Use browser docker image and parallelise browser start properly
__e2e_tests__/run
deleted
100755 → 0
This diff is collapsed.
... | @@ -13,8 +13,9 @@ | ... | @@ -13,8 +13,9 @@ |
"test": "jest --testPathIgnorePatterns src/liowebrtc src/rtcpeerconnection src/signalbuddy", | "test": "jest --testPathIgnorePatterns src/liowebrtc src/rtcpeerconnection src/signalbuddy", | ||
"test-changed": "jest --only-changed --testPathIgnorePatterns src/liowebrtc src/rtcpeerconnection src/signalbuddy", | "test-changed": "jest --only-changed --testPathIgnorePatterns src/liowebrtc src/rtcpeerconnection src/signalbuddy", | ||
"test-coverage": "jest --coverage --testPathIgnorePatterns src/liowebrtc src/rtcpeerconnection src/signalbuddy", | "test-coverage": "jest --coverage --testPathIgnorePatterns src/liowebrtc src/rtcpeerconnection src/signalbuddy", | ||
"test-e2e": "cd __e2e_tests__ ; ./run", | "test-e2e:peer1": "testcafe chromium:headless __e2e_tests__/peer1.e2e.js", | ||
"test-e2e:chromium": "cd __e2e_tests__ ; ./run chromium:headless", | "test-e2e:peer2": "testcafe chromium:headless __e2e_tests__/peer2.e2e.js", | ||
"test-e2e": "run-p test-e2e:*", | |||
"lint": "jshint .", | "lint": "jshint .", | ||
"validate": "npm ls" | "validate": "npm ls" | ||
}, | }, | ||
... | @@ -34,6 +35,7 @@ | ... | @@ -34,6 +35,7 @@ |
"eslint": "^6.5.1", | "eslint": "^6.5.1", | ||
"eslint-plugin-testcafe": "^0.2.1", | "eslint-plugin-testcafe": "^0.2.1", | ||
"jest": "^24.9.0", | "jest": "^24.9.0", | ||
"npm-run-all": "^4.1.5", | |||
"prettier": "^1.18.2", | "prettier": "^1.18.2", | ||
"testcafe": "^1.5.0", | "testcafe": "^1.5.0", | ||
"webpack": "^4.41.0", | "webpack": "^4.41.0", | ||
... | ... |
Please register or sign in to comment