Adding test framework

This commit is contained in:
Austin Sasko 2022-03-14 15:43:00 -04:00 committed by GitHub
parent 1cb32c1bff
commit 55042b3b87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,8 @@
"check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:build\"", "check-all": "concurrently \"npm:format-check\" \"npm:lint\" \"npm:build\"",
"format": "prettier --write **/*.ts", "format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts", "format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts" "lint": "eslint **/*.ts",
"test": "jest"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -39,6 +40,7 @@
"eslint": "^7.4.0", "eslint": "^7.4.0",
"eslint-plugin-github": "^4.1.1", "eslint-plugin-github": "^4.1.1",
"prettier": "^2.0.5", "prettier": "^2.0.5",
"typescript": "^3.8.3" "typescript": "^3.8.3",
"jest": "^27.3.0"
} }
} }