Skip to content

Commit

Permalink
Modified test.yml of github action so it runs tests separately
Browse files Browse the repository at this point in the history
  • Loading branch information
Snafkin547 committed Apr 4, 2024
1 parent 2640fae commit 5bf901d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,7 @@ jobs:
run: npm ci

- name: Run Jest Tests
run: npx jest --coverage --runInBand tests/regr-tests
run: |
for file in tests/regr-tests/*.test.ts; do
npx jest --coverage --runInBand "$file"
done

0 comments on commit 5bf901d

Please sign in to comment.