test(e2e): add dev script which uses interactive cypress

This commit is contained in:
Benedikt Rötsch
2017-12-28 15:09:10 +01:00
committed by Benedikt Rötsch
parent 012492cf05
commit 3a6886e4f8
3 changed files with 42 additions and 10 deletions

View File

@@ -13,6 +13,7 @@
"pretest": "npm run lint",
"test": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:e2e": "node test/run-e2e-test.js",
"test:e2e:dev": "node test/run-e2e-test.js --dev",
"test:integration": "jest test/integration",
"test:integration:watch": "jest test/integration --watch",
"test:unit": "jest test/unit",
@@ -44,6 +45,7 @@
"eslint-plugin-standard": "^2.0.1",
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"supertest": "^3.0.0"
"supertest": "^3.0.0",
"yargs": "^10.0.3"
}
}