diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-01 14:41:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-01 14:41:17 -0500 |
commit | 7c615244f40222584984157223944e6aa6448d13 (patch) | |
tree | dee98802eeb1c6ca82e06fe0ec0cda12f38e3605 /package.json | |
parent | 314c567a47cd07dee7d6cda785257b2109afcad5 (diff) | |
parent | bdb86e1713a196c9539306166d8dc4238adefc0d (diff) |
Merge pull request #375 from toasted-nutbread/document-tests
Document 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 17fdfa82..74d89dda 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 && node ./test/test-dictionary.js && node ./test/test-database.js" + "test-code": "node ./test/test-schema.js && node ./test/test-dictionary.js && node ./test/test-database.js && node ./test/test-document.js" }, "repository": { "type": "git", @@ -29,6 +29,7 @@ "devDependencies": { "eslint": "^6.8.0", "eslint-plugin-no-unsanitized": "^3.0.2", - "fake-indexeddb": "^3.0.0" + "fake-indexeddb": "^3.0.0", + "jsdom": "^16.2.0" } } |