feat(e2e): separating e2e from unit tests

This commit is contained in:
Chris Troutner
2025-05-23 07:26:51 -07:00
parent 3a4569c33f
commit 3f91653d23
4 changed files with 39 additions and 5 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
"type": "module",
"scripts": {
"start": "node index.js",
"test": "npm run test:all",
"test": "npm run test:unit",
"test:all": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit test/e2e/automated/",
"test:unit": "export SVC_ENV=test && c8 --reporter=text mocha --exit --timeout 15000 --recursive test/unit/",
"test:e2e:auto": "export SVC_ENV=test && mocha --exit --timeout 15000 test/e2e/automated/",