Skip to content

Commit

Permalink
Merge pull request #776 from wheresrhys/rhys/store-test-results
Browse files Browse the repository at this point in the history
build: store test results
  • Loading branch information
wheresrhys authored Aug 3, 2024
2 parents 9b3954c + 6388ede commit 1c31dac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ jobs:
steps:
- *workspace
- run: npm run test:ci
- store_test_results:
path: test-results

nodefetch3:
<<: *nodelts
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ coverage/
/packages/**/dist

import-compat/ts-*.js
test-results
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"prepare": "husky || echo \"husky not available\"",
"build": "npm run build -w=packages",
"docs": "npm run start -w docs",
"test:ci": "vitest .",
"test:ci": "vitest . --reporter=junit --outputFile=test-results/junit.xml",
"test:legacy": "vitest ./packages/fetch-mock/test/specs",
"test": "vitest --ui .",
"test:coverage": "vitest run --coverage ./packages/**/src/__tests__",
Expand Down

0 comments on commit 1c31dac

Please sign in to comment.