1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +01:00

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.
This commit is contained in:
Mark Stacey 2019-07-04 11:50:24 -03:00 committed by GitHub
parent 797f0c6ced
commit 714cf72fc3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@
"publish-docs": "gh-pages -d docs/jsdocs", "publish-docs": "gh-pages -d docs/jsdocs",
"start:test": "gulp dev:test", "start:test": "gulp dev:test",
"build:test": "gulp build: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": "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'", "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", "watch:test:unit": "nodemon --exec \"npm run test:unit\" ./test ./app ./ui",