diff options
| author | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-02 13:20:03 +0900 |
|---|---|---|
| committer | Akihiko Odaki <nekomanma@pixiv.co.jp> | 2018-04-02 13:20:03 +0900 |
| commit | 0a48ef59cdc9e74f3a6137792e6461c25e4edb53 (patch) | |
| tree | 97a8a134537e58f46f17dac0c5fd76b0fd225583 /test | |
| parent | Introduce config module (diff) | |
| download | sharkey-0a48ef59cdc9e74f3a6137792e6461c25e4edb53.tar.gz sharkey-0a48ef59cdc9e74f3a6137792e6461c25e4edb53.tar.bz2 sharkey-0a48ef59cdc9e74f3a6137792e6461c25e4edb53.zip | |
Fix built module references
Diffstat (limited to 'test')
| -rw-r--r-- | test/text.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/text.js b/test/text.js index 0338bcefb4..711aad8167 100644 --- a/test/text.js +++ b/test/text.js @@ -4,8 +4,8 @@ const assert = require('assert'); -const analyze = require('../built/common/text/parse').default; -const syntaxhighlighter = require('../built/common/text/parse/core/syntax-highlighter').default; +const analyze = require('../built/text/parse').default; +const syntaxhighlighter = require('../built/text/parse/core/syntax-highlighter').default; describe('Text', () => { it('can be analyzed', () => { |