Skip to content

Commit f7ebc67

Browse files
committed
Rollback to react in e2e tests as angular e2e needs a fix
1 parent 7872238 commit f7ebc67

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
with:
2929
node-version: '12.x'
3030
- name: Install dependencies
31-
run: yarn --dev && yarn --cwd ./playgrounds/angular
31+
run: yarn --dev && yarn --cwd ./playgrounds/react
3232
- name: Run Browser tests
3333
uses: cypress-io/github-action@v2
3434
with:
3535
# Tests are only done on one playground to avoid long testing time
36-
start: yarn playground:angular
37-
env: playground=angular
36+
start: yarn playground:react
37+
env: playground=react
3838
- uses: actions/upload-artifact@v1
3939
if: failure()
4040
with:

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"test:watch": "yarn test --watch",
99
"test": "jest --runInBand --selectProjects dom --selectProjects node",
1010
"test:build": "yarn build && jest --runInBand --selectProjects build",
11-
"test:e2e": "concurrently --kill-others -s first \"NODE_ENV=test yarn playground:angular\" \"cypress run --env playground=angular\"",
11+
"test:e2e": "concurrently --kill-others -s first \"NODE_ENV=test yarn playground:javascript\" \"cypress run --env playground=javascript\"",
1212
"test:e2e:all": "sh scripts/e2e.sh",
13-
"test:e2e:watch": "concurrently --kill-others -s first \"NODE_ENV=test yarn playground:angular\" \"cypress open --env playground=angular\"",
13+
"test:e2e:watch": "concurrently --kill-others -s first \"NODE_ENV=test yarn playground:javascript\" \"cypress open --env playground=javascript\"",
1414
"test:all": "yarn test:e2e:all && yarn test && test:build",
1515
"playground:vue": "yarn --cwd ./playgrounds/vue && yarn --cwd ./playgrounds/vue serve",
1616
"playground:react": "yarn --cwd ./playgrounds/react && yarn --cwd ./playgrounds/react start",

0 commit comments

Comments
 (0)