1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 19:59:37 +00:00

feat: jest testing

This commit is contained in:
James Cook 2022-04-10 11:47:38 +01:00
parent 89ed852231
commit 40c8517a44
7 changed files with 6142 additions and 3 deletions

View file

@ -2,6 +2,7 @@
"name": "classcharts-api",
"version": "1.2.0",
"description": "",
"type": "module",
"repository": {
"url": "https://github.com/jamesatjaminit/classcharts-api"
},
@ -9,7 +10,7 @@
"scripts": {
"build": "tsc && webpack",
"generateDocs": "npx typedoc --entryPointStrategy expand ./src",
"test": "echo do tests",
"test": "jest",
"prepublishOnly": "npm run build"
},
"author": "",
@ -22,12 +23,16 @@
"build/**"
],
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"jest": "^27.5.1",
"jest-extended": "^2.0.0",
"prettier": "^2.5.1",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"typedoc": "^0.22.13",
"typescript": "^4.6.2",