diff --git a/test/liveTable.test.ts b/test/liveTable.test.ts index 92496bb..891221c 100644 --- a/test/liveTable.test.ts +++ b/test/liveTable.test.ts @@ -114,6 +114,7 @@ describe('liveTable', () => { }, ); }); + async function hasRecords( columnValue: string, expected: readonly string[], diff --git a/vitest.config.ts b/vitest.config.ts index 46888b5..8ec378c 100644 --- a/vitest.config.ts +++ b/vitest.config.ts @@ -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', },