Skip to content

Commit 5efecdb

Browse files
author
Christian Kaatz
committed
Rewrite tests to use jest and fix #3
1 parent f632da3 commit 5efecdb

10 files changed

+4455
-1481
lines changed

.eslintrc

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"env": {
33
"node": true,
4-
"es6": true
4+
"es6": true,
5+
"jest/globals": true
56
},
67
"globals": {},
8+
"plugins": ["jest"],
79
"extends": "eslint:recommended",
810
"rules": {
911
"no-eval": 0,

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"singleQuote": true,
3+
"tabWidth": 2
4+
}

0 commit comments

Comments
 (0)