30 lines
737 B
TypeScript
30 lines
737 B
TypeScript
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
const isCI = !!process.env.CI;
|
|
|
|
export default defineConfig({
|
|
testDir: "./tests/e2e",
|
|
timeout: 30_000,
|
|
expect: {
|
|
timeout: 5_000,
|
|
},
|
|
use: {
|
|
baseURL: "http://localhost:3000",
|
|
trace: "on-first-retry",
|
|
},
|
|
projects: [
|
|
{
|
|
name: "chromium",
|
|
use: { ...devices["Desktop Chrome"] },
|
|
},
|
|
],
|
|
webServer: {
|
|
// CI 에서는 프로덕션 빌드 서버(next start)를 대상으로 E2E 를 수행해
|
|
// dev 모드의 느린 HMR/StrictMode 2회 렌더로 인한 flakiness 를 줄인다.
|
|
command: isCI ? "npm run start:e2e" : "npm run dev",
|
|
url: "http://localhost:3000",
|
|
reuseExistingServer: !isCI,
|
|
timeout: 120_000,
|
|
},
|
|
});
|