This commit is contained in:
Siddharth Singh
2024-07-01 21:43:01 +05:30
parent 98aaab8e51
commit 65f77e845d
3 changed files with 6 additions and 6 deletions

View File

@@ -2,8 +2,8 @@ import { DittoDB } from '@/db/DittoDB.ts';
import { delay } from '@/test.ts';
if (Deno.env.get('CI') && Deno.env.get('DATABASE_URL')?.startsWith('postgres')) {
console.info('Waiting 15 seconds for postgres to start...');
await delay(15000);
console.info('Waiting 15 seconds for postgres to start...');
await delay(15000);
}
const kysely = await DittoDB.getInstance();