We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fcfadf commit 6655884Copy full SHA for 6655884
test/integration/nextjs-cache-handler.integration.test.ts
@@ -4,14 +4,13 @@ import fetch from 'node-fetch';
4
import { createClient } from 'redis';
5
import { join } from 'path';
6
import { CacheEntry } from '../../src/RedisStringsHandler';
7
-import { a } from 'vitest/dist/chunks/suite.B2jumIFP.js';
8
9
const NEXT_APP_DIR = join(__dirname, 'next-app');
10
console.log('NEXT_APP_DIR', NEXT_APP_DIR);
11
const NEXT_START_PORT = 3055;
12
const NEXT_START_URL = `http://localhost:${NEXT_START_PORT}`;
13
14
-const REDIS_BACKGROUND_SYNC_DELAY = 100; // 100ms delay to prevent flaky tests in slow CI environments
+const REDIS_BACKGROUND_SYNC_DELAY = 250; //ms delay to prevent flaky tests in slow CI environments
15
16
let nextProcess;
17
let redisClient;
0 commit comments