diff options
Diffstat (limited to 'test/test-schema.js')
-rw-r--r-- | test/test-schema.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/test-schema.js b/test/test-schema.js index 7620ab16..f0a99c3b 100644 --- a/test/test-schema.js +++ b/test/test-schema.js @@ -19,7 +19,10 @@ const assert = require('assert'); const {VM} = require('./yomichan-vm'); const vm = new VM(); -vm.execute('bg/js/json-schema.js'); +vm.execute([ + 'mixed/js/core.js', + 'bg/js/json-schema.js' +]); const JsonSchema = vm.get('JsonSchema'); |