diff options
| author | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-01-30 16:56:27 +0900 |
|---|---|---|
| committer | Aya Morisawa <AyaMorisawa4869@gmail.com> | 2019-01-30 16:56:27 +0900 |
| commit | 28bfb4542626b6bb781872af5faa8cadc4eafc56 (patch) | |
| tree | e9a6d32ba9798539f7d0dc4b3772a02750d7d634 /test | |
| parent | Update vue-svg-inline-loader requirement from 1.2.7 to 1.2.10 (#4040) (diff) | |
| download | sharkey-28bfb4542626b6bb781872af5faa8cadc4eafc56.tar.gz sharkey-28bfb4542626b6bb781872af5faa8cadc4eafc56.tar.bz2 sharkey-28bfb4542626b6bb781872af5faa8cadc4eafc56.zip | |
Avoid export default
Diffstat (limited to 'test')
| -rw-r--r-- | test/extract-mentions.ts | 2 | ||||
| -rw-r--r-- | test/mfm.ts | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/test/extract-mentions.ts b/test/extract-mentions.ts index b32f5dd4bb..a70926cbb1 100644 --- a/test/extract-mentions.ts +++ b/test/extract-mentions.ts @@ -1,7 +1,7 @@ import * as assert from 'assert'; import extractMentions from '../src/misc/extract-mentions'; -import parse from '../src/mfm/parse'; +import { parse } from '../src/mfm/parse'; describe('Extract mentions', () => { it('simple', () => { diff --git a/test/mfm.ts b/test/mfm.ts index bbd53fe58a..5873164d67 100644 --- a/test/mfm.ts +++ b/test/mfm.ts @@ -10,8 +10,8 @@ import * as assert from 'assert'; -import parse, { parsePlain } from '../src/mfm/parse'; -import toHtml from '../src/mfm/toHtml'; +import { parse, parsePlain } from '../src/mfm/parse'; +import { toHtml } from '../src/mfm/toHtml'; import { createTree as tree, createLeaf as leaf, MfmTree } from '../src/mfm/types'; import { removeOrphanedBrackets } from '../src/mfm/parser'; |