Skip to content

Commit

Permalink
Don't run tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakhellesoy committed Dec 7, 2023
1 parent 34310df commit f654e50
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/liveTable.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ describe('liveTable', () => {
},
);
});

async function hasRecords(
columnValue: string,
expected: readonly string[],
Expand Down
2 changes: 2 additions & 0 deletions vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { defineConfig } from 'vitest/config';

export default defineConfig({
test: {
// We can't run tests in parallel because we're using a database
pool: 'forks',
coverage: {
provider: 'v8',
},
Expand Down

0 comments on commit f654e50

Please sign in to comment.