diff options
Diffstat (limited to 'test/schema-validate.js')
-rw-r--r-- | test/schema-validate.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/test/schema-validate.js b/test/schema-validate.js index 761f0a1c..4c01fa70 100644 --- a/test/schema-validate.js +++ b/test/schema-validate.js @@ -19,7 +19,10 @@ const fs = require('fs'); 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'); |