Skip to content
This repository was archived by the owner on Mar 28, 2022. It is now read-only.

Commit 2918805

Browse files
committed
Add nodejs e2e tests
1 parent 4e4f107 commit 2918805

File tree

17 files changed

+7604
-1128
lines changed

17 files changed

+7604
-1128
lines changed

package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,11 @@
2828
"lint-staged": "lint-staged",
2929
"test": "jest",
3030
"coveralls": "cat ./coverage/lcov.info | coveralls",
31-
"test:e2e": "cd test-e2e/browser && npm run test:react-app && npm run test:vanilla-app",
32-
"test:e2e:ci": "cd test-e2e/browser && npm i && npm run cypress:install && npm run test:react-app:ci && npm run test:vanilla-app:ci"
31+
"test:e2e:install": "cd test-e2e/mocks && npm i && cd ../nodejs/es6 && npm i && cd ../../browser && npm i && npm run cypress:install && cd react-app && npm i && cd ../vanilla-app && npm i",
32+
"test:e2e:browser": "cd test-e2e/browser && npm run test:react-app && npm run test:vanilla-app",
33+
"test:e2e:nodejs": "cd test-e2e/nodejs/es6 && npm run test:ci",
34+
"test:e2e": "npm run test:e2e:browser && npm run test:e2e:nodejs",
35+
"test:e2e:ci": "npm run test:e2e:install && npm run test:e2e"
3336
},
3437
"dependencies": {
3538
"@data-provider/axios": "^1.5.0",

0 commit comments

Comments
 (0)