Merge pull request #47 from rastapasta/jest

Add Jest as a development dependency for unit tests
This commit is contained in:
Christian Paul 2018-10-18 19:58:15 -07:00 committed by GitHub
commit c03fb7fd64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5053 additions and 5 deletions

5053
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -5,7 +5,7 @@
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
"start": "node main", "start": "node main",
"test": "echo \"Error: no test specified\" && exit 1" "test": "jest"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -44,6 +44,7 @@
"x256": "0.0.2" "x256": "0.0.2"
}, },
"devDependencies": { "devDependencies": {
"eslint": "^5.7.0" "eslint": "^5.7.0",
"jest": "^23.6.0"
} }
} }