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 /package.json | |
parent | 174d9e7429a0f7a45538e56a594ce627239d80c3 (diff) | |
parent | 1e573f36c416b3955b2e679c8f3ce7ffa91bf504 (diff) |
Merge pull request #371 from toasted-nutbread/database-tests
Database tests
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json index b486c25d..2bbc6a79 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "scripts": { "test": "npm run test-lint && npm run test-code", "test-lint": "eslint .", - "test-code": "node ./test/test-schema.js" + "test-code": "node ./test/test-schema.js && node ./test/test-dictionary.js && node ./test/test-database.js" }, "repository": { "type": "git", @@ -27,6 +27,7 @@ "homepage": "https://foosoft.net/projects/yomichan/", "devDependencies": { "eslint": "^6.8.0", - "eslint-plugin-no-unsanitized": "^3.0.2" + "eslint-plugin-no-unsanitized": "^3.0.2", + "fake-indexeddb": "^3.0.0" } } |