diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2018-08-05 13:50:49 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2018-08-05 13:50:49 +0900 |
| commit | 005d25a07b21efbd4996e31a232fcf5393deb4d5 (patch) | |
| tree | 833792f0fec6918f902efd5928097e5111caca98 /test | |
| parent | 5.15.0 (diff) | |
| download | misskey-005d25a07b21efbd4996e31a232fcf5393deb4d5.tar.gz misskey-005d25a07b21efbd4996e31a232fcf5393deb4d5.tar.bz2 misskey-005d25a07b21efbd4996e31a232fcf5393deb4d5.zip | |
Fix test
Diffstat (limited to 'test')
| -rw-r--r-- | test/mfm.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/mfm.ts b/test/mfm.ts index fcd5f3f076..652a6e9820 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -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); }); |