switching to system tests

This commit is contained in:
Carlos_Veloz
2021-11-26 13:51:50 -06:00
parent 6391f1bdef
commit 278edaacad
2 changed files with 2 additions and 2 deletions

View File

@@ -12,4 +12,4 @@ jobs:
with:
node-version: '14.x'
- run: npm install
- run: npm run test-unit
- run: npm run test-system

View File

@@ -145,7 +145,7 @@
"test": "./scripts/test.sh",
"test-unit": "nyc --reporter=text ./node_modules/mocha/bin/mocha \"test/unit/**/**.test.js\"",
"test-lint": "./scripts/test-lint.sh",
"test-system": "./scripts/test-system.sh",
"test-system": "./node_modules/mocha/bin/mocha \"test/system/**.test.js\"",
"release": "./scripts/release.sh",
"coverage": "nyc report --reporter=html --reporter=text mocha"
}