diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-17 22:31:28 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-17 22:31:28 -0500 |
commit | 06480751a9d9ff1471455f31e3efc99d552a4975 (patch) | |
tree | d689028a78330eb0434165c638206b135bfe4844 /test/schema-validate.js | |
parent | 7cbebf6897efb32c80c5e258f594d18861974bad (diff) |
Create yomichan-test script to reduce repeated code
Diffstat (limited to 'test/schema-validate.js')
-rw-r--r-- | test/schema-validate.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/test/schema-validate.js b/test/schema-validate.js index 309adf83..1271a611 100644 --- a/test/schema-validate.js +++ b/test/schema-validate.js @@ -1,9 +1,7 @@ const fs = require('fs'); -const path = require('path'); +const yomichanTest = require('./yomichan-test'); -const jsonSchemaFileName = path.join(__dirname, '../ext/bg/js/json-schema.js'); -const jsonSchemaFileSource = fs.readFileSync(jsonSchemaFileName, {encoding: 'utf8'}); -const JsonSchema = Function(`'use strict';${jsonSchemaFileSource};return JsonSchema;`)(); +const {JsonSchema} = yomichanTest.requireScript('ext/bg/js/json-schema.js', ['JsonSchema']); function main() { |