Skip to content

Commit

Permalink
fix: run tests in single thread
Browse files Browse the repository at this point in the history
  • Loading branch information
psteinroe committed Jul 12, 2024
1 parent 30afb2e commit e91233c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: 🚧 Test
id: test
run: pnpm run test
continue-on-error: true
continue-on-error: false

- name: Upload postgrest-core coverage
uses: codecov/codecov-action@v4
Expand Down
1 change: 1 addition & 0 deletions packages/postgrest-react-query/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from 'vitest/config';

export default defineConfig({
test: {
poolOptions: { thread: { singleThread: true } },
typecheck: { enabled: true },
environment: 'happy-dom',
coverage: {
Expand Down
1 change: 1 addition & 0 deletions packages/postgrest-swr/vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { defineConfig } from 'vitest/config';

export default defineConfig({
test: {
poolOptions: { thread: { singleThread: true } },
typecheck: { enabled: true },
environment: 'happy-dom',
coverage: {
Expand Down

0 comments on commit e91233c

Please sign in to comment.