feat: begin working on integration tests that will call actual onspring api sandbox

This commit is contained in:
StevanFreeborn
2023-02-13 21:02:00 -06:00
parent 757e773f9f
commit 5de13d6b5b
6 changed files with 64 additions and 3 deletions
+4 -1
View File
@@ -40,8 +40,10 @@
"format-staged": "pretty-quick --staged",
"format": "pretty-quick",
"build": "npm run lint-fix && npm run tests && npm run format && npm run clean && tsc --project tsconfig.cjs.json & tsc --project tsconfig.esm.json",
"tests": "mocha -R progress -r ts-node/register ./tests/**/*.spec.ts",
"test": "mocha -r ts-node/register",
"tests:unit": "mocha -R progress -r ts-node/register ./tests/**/*.spec.ts",
"tests:integration": "mocha -R progress -r ts-node/register ./integrationTests/**/*.spec.ts",
"tests": "mocha -R progress -r ts-node/register ./tests/**/*.spec.ts ./integrationTests/**/*.spec.ts",
"test-coverage": "nyc npm run tests",
"prepare": "husky install"
},
@@ -53,6 +55,7 @@
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"chai": "^4.3.7",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",