We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bfed42 commit d8ed41fCopy full SHA for d8ed41f
.github/workflows/cypress-test.yml
.github/workflows/jest-test.yml renamed to .github/workflows/test.yml
@@ -27,9 +27,18 @@ jobs:
27
- name: Seed Database
28
run: yarn seed
29
30
- - name: Run Frontend Tests
+ - name: Run Jest Tests
31
run: yarn test --ci --watchAll=false --silent
32
33
+ - name: Cypress:Start the development server
34
+ run: yarn dev
35
+
36
+ - name: Cypress:Check if Frontend is running
37
+ run: yarn wait-on http://localhost:3000 --timeout 10000
38
39
+ - name: Cypress:Run Tests
40
+ run: yarn test:cypress
41
42
- name: Stop Emulator
43
run: kill $(cat emulator_pid.txt)
44
if: always()
0 commit comments