This commit is contained in:
syuilo 2018-08-05 13:50:49 +09:00
parent 255222bfb4
commit 005d25a07b

View file

@ -42,7 +42,7 @@ describe('Text', () => {
it('motion', () => {
const tokens = analyze('(((Strawberry))) Pasta');
assert.deepEqual([
{ type: 'motion', content: '***Strawberry***', motion: 'Strawberry' },
{ type: 'motion', content: '(((Strawberry)))', motion: 'Strawberry' },
{ type: 'text', content: ' Pasta' }
], tokens);
});