Browse Source

Reshuffle e2e commands (e2e is the top-level command now)

bubble
Kyle Shockey 7 years ago
parent
commit
1047226ff4
No known key found for this signature in database GPG Key ID: DC20D559FFBC0D36
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      package.json

+ 2
- 2
package.json View File

@@ -33,10 +33,10 @@
"test-in-node": "npm run lint-errors && npm run just-test-in-node", "test-in-node": "npm run lint-errors && npm run just-test-in-node",
"just-test": "karma start --config karma.conf.js", "just-test": "karma start --config karma.conf.js",
"just-test-in-node": "mocha --recursive --compilers js:babel-core/register test/core test/components test/bugs test/swagger-ui-dist-package", "just-test-in-node": "mocha --recursive --compilers js:babel-core/register test/core test/components test/bugs test/swagger-ui-dist-package",
"e2e": "sleep 3 && nightwatch test/e2e/scenarios --config test/e2e/nightwatch.json",
"test-e2e": "sleep 3 && nightwatch test/e2e/scenarios --config test/e2e/nightwatch.json",
"e2e-initial-render": "nightwatch test/e2e/scenarios/ --config test/e2e/nightwatch.json --group initial-render", "e2e-initial-render": "nightwatch test/e2e/scenarios/ --config test/e2e/nightwatch.json --group initial-render",
"mock-api": "json-server --watch test/e2e/db.json --port 3204", "mock-api": "json-server --watch test/e2e/db.json --port 3204",
"e2e-flow": "npm-run-all --parallel -r hot-server mock-api test-e2e"
"e2e": "npm-run-all --parallel -r hot-server mock-api test-e2e"
}, },
"dependencies": { "dependencies": {
"base64-js": "^1.2.0", "base64-js": "^1.2.0",


Loading…
Cancel
Save