diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-02-22 12:07:09 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-22 12:07:09 -0500 |
commit | 0e31139734efd51799efcb6357c074059c78858d (patch) | |
tree | 87604c886aa8bfcdd1787809d6a20e3f2057597f /test/test-dictionary.js | |
parent | 174d9e7429a0f7a45538e56a594ce627239d80c3 (diff) | |
parent | 1e573f36c416b3955b2e679c8f3ce7ffa91bf504 (diff) |
Merge pull request #371 from toasted-nutbread/database-tests
Database tests
Diffstat (limited to 'test/test-dictionary.js')
-rw-r--r-- | test/test-dictionary.js | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/test-dictionary.js b/test/test-dictionary.js new file mode 100644 index 00000000..84014540 --- /dev/null +++ b/test/test-dictionary.js @@ -0,0 +1,12 @@ +const yomichanTest = require('./yomichan-test'); +const dictionaryValidate = require('./dictionary-validate'); + + +async function main() { + const archive = yomichanTest.createTestDictionaryArchive(); + const schemas = dictionaryValidate.getSchemas(); + await dictionaryValidate.validateDictionary(archive, schemas); +} + + +if (require.main === module) { main(); } |