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 c08ea97Copy full SHA for c08ea97
.github/workflows/cypress-test.yml
.github/workflows/jest-test.yml renamed to .github/workflows/test.yml
@@ -27,13 +27,23 @@ 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: PORT=3000 yarn dev & echo $! > frontend_pid.txt
35
+
36
+ - name: Cypress:Run Tests
37
+ run: yarn test:cypress
38
39
- name: Stop Emulator
40
run: kill $(cat emulator_pid.txt)
41
if: always()
42
43
+ - name: Stop Front
44
+ run: kill $(cat frontend_pid.txt)
45
+ if: always()
46
47
- name: Install Backend Dependencies
48
run: |
49
cd functions
0 commit comments