aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Stacey <markjstacey@gmail.com>2019-07-04 22:50:24 +0800
committerGitHub <noreply@github.com>2019-07-04 22:50:24 +0800
commit714cf72fc3bfdf6c0440f712e5719885c86dcc00 (patch)
tree290272defcd6004b83ffe80e436c7fccaaec2f83
parent797f0c6cedfb6d9e401e62414cc8aa07a36d7bd7 (diff)
downloadtangerine-wallet-browser-714cf72fc3bfdf6c0440f712e5719885c86dcc00.tar.gz
tangerine-wallet-browser-714cf72fc3bfdf6c0440f712e5719885c86dcc00.tar.zst
tangerine-wallet-browser-714cf72fc3bfdf6c0440f712e5719885c86dcc00.zip
Omit integration tests from default test script (#6803)
The integration tests are slow, and rather inconvenient to run in development on a regular basis (they break if you move the mouse). They have been removed from the `test` script, to make running `test` frequently during development less painful.
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index 1f90fd75e..bf0ddd53a 100644
--- a/package.json
+++ b/package.json
@@ -9,7 +9,7 @@
"publish-docs": "gh-pages -d docs/jsdocs",
"start:test": "gulp dev:test",
"build:test": "gulp build:test",
- "test": "npm run test:unit && npm run test:integration && npm run lint",
+ "test": "npm run test:unit && npm run lint",
"dapp": "static-server test/e2e/contract-test --port 8080",
"dapp-chain": "shell-parallel -s 'npm run ganache:start -- -b 2' -x 'sleep 5 && static-server test/e2e/contract-test --port 8080'",
"watch:test:unit": "nodemon --exec \"npm run test:unit\" ./test ./app ./ui",