test: added tests 🎉

This commit is contained in:
EvolutionX
2022-02-15 10:19:03 +05:30
parent 2d1e630d30
commit 7e319683e1
7 changed files with 8370 additions and 3 deletions

View File

@@ -8,7 +8,8 @@
"watch": "tsc -w",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix",
"release": "standard-version && git push --follow-tags"
"release": "standard-version && git push --follow-tags",
"test": "jest --coverage --verbose"
},
"keywords": [],
"author": "",
@@ -23,7 +24,13 @@
"ts-results": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"babel-jest": "^27.5.1",
"cz-conventional-changelog": "^3.3.0",
"jest": "^27.5.1",
"standard-version": "^9.3.2",
"typescript": "^4.5.5"
},