Skip to content

Commit

Permalink
build: actually save test results
Browse files Browse the repository at this point in the history
  • Loading branch information
wheresrhys committed Aug 3, 2024
1 parent 58a3de8 commit 6388ede
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
steps:
- *workspace
- run: npm run test:ci
- store_test_results
- store_test_results:
path: test-results

nodefetch3:
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 . --reporter=junit",
"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 6388ede

Please sign in to comment.