@trieb.work/nextjs-turbo-redis-cache
Version:
Designed for speed, scalability, and optimized performance, nextjs-turbo-redis-cache is your custom cache handler for demanding production environments.
17 lines (15 loc) • 419 B
text/typescript
import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: 'tests',
use: {
baseURL: process.env.PLAYWRIGHT_BASE_URL || 'http://localhost:3101',
trace: 'on-first-retry',
},
webServer: {
command:
'pnpm -C test/integration/next-app-16-2-3-cache-components dev -p 3101',
url: 'http://localhost:3101',
reuseExistingServer: true,
timeout: 120_000,
},
});