Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/deploy-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,8 @@ jobs:
runs-on: lynx-ubuntu-24.04-medium
run: >
pnpm run test
--test-timeout=50000
--testTimeout=50000
--hookTimeout=50000
--reporter=dot
--reporter=junit
--outputFile=test-report.junit.xml
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ jobs:
--outputFile=test-report.junit.xml
--coverage.reporter='json'
--coverage.reporter='text'
--test-timeout=50000
--testTimeout=50000
--no-cache
--logHeapUsage
--silent
Expand Down Expand Up @@ -208,8 +208,8 @@ jobs:
--reporter=dot
--reporter=junit
--outputFile=test-report.junit.xml
--test-timeout=50000
--hook-timeout=50000
--testTimeout=50000
--hookTimeout=50000
--coverage
--coverage.reporter='json'
--coverage.reporter='text'
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ _This works with any code ran in Node, so will work with most JS testing framewo

See [Debugging Vitest](https://vitest.dev/guide/debugging.html) for more details.

You can combine debug with `--project` or `.only` to debug a subset of tests. If you plan to stay long in the debugger (which you'll likely do!), you may increase the test timeout by setting `--test-timeout`.
You can combine debug with `--project` or `.only` to debug a subset of tests. If you plan to stay long in the debugger (which you'll likely do!), you may increase the test timeout by setting `--testTimeout`.

To overwrite any test fixtures when fixing a bug or anything, add the `--update`

Expand Down