Skip to content

Commit

Permalink
5 read connections might be too many for CI to handle :thinking_face:
Browse files Browse the repository at this point in the history
  • Loading branch information
stevensJourney committed Jan 22, 2024
1 parent 8e6d64a commit a6253c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tests/sqlite/rawQueries.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function createTestUser(context: { execute: (sql: string, args?: any[]) => Promi
return context.execute('INSERT INTO "User" (id, name, age, networth) VALUES(?, ?, ?, ?)', [id, name, age, networth]);
}

const NUM_READ_CONNECTIONS = 5;
const NUM_READ_CONNECTIONS = 3;

export function registerBaseTests() {
beforeEach(async () => {
Expand Down

0 comments on commit a6253c9

Please sign in to comment.