blob: 43ac76c33e1d558f4b763451731b0f069930dac3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
const assert = require('assert');
const analyze = require('../src/common/text');
//const complie = require('../src/web/app/common/scripts/text-compiler');
describe('Text', () => {
it('is correctly analyzed', () => {
const tokens = analyze('@himawari お腹ペコい #yryr');
assert.deepEqual([
{ type: 'mention', content: '@himawari', username: 'himawari' },
{ type: 'text', content: ' お腹ペコい ' },
{ type: 'hashtag', content: '#yryr', hashtag: 'yryr' }
], tokens);
});
/*
it('正しくコンパイルされる', () => {
assert.equal(-1, [1,2,3].indexOf(4));
});
*/
});
|