Skip to content

Commit

Permalink
[playwright] feat: Adding FE System test
Browse files Browse the repository at this point in the history
  • Loading branch information
helloitsdave committed Jan 25, 2024
1 parent b2dc9cb commit c438dd9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/frontend-system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ jobs:
- name: Test connectivity
run: curl ${API_URL}

- name: Install and start frontend
run: |
cd ./frontend
npm ci
npm run build
npm run start
- name: Install Playwright
run: |
cd ./playwright
Expand All @@ -43,7 +50,7 @@ jobs:
- name: Run Playwright Tests
run: |
cd ./playwright
npm run test
npm run test
- name: Stop service in docker
run: |
Expand Down

2 comments on commit c438dd9

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage for this commit

100.00%

Coverage Report
FileBranchesFuncsLinesUncovered Lines
src
   index.ts100%100%100%
   prisma.ts100%100%100%
src/__mocks__
   prisma.ts100%100%100%

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage for this commit

100.00%

Coverage Report
FileBranchesFuncsLinesUncovered Lines
src
   App.tsx100%100%100%
src/api
   apiService.ts100%100%100%
src/components
   Note.tsx100%100%100%
   NoteForm.tsx100%100%100%
   NoteGrid.tsx100%100%100%
   Spinner.tsx100%100%100%

Please sign in to comment.