Files
goodgo-platform/playwright.config.ts
Ho Ngoc Hai 26b6b37cee
Some checks failed
CI / Lint → Typecheck → Test → Build (22) (push) Failing after 12s
Deploy / Build AI Services Image (push) Failing after 10s
Security Scanning / Trivy Scan — API Image (push) Failing after 1m25s
Security Scanning / Trivy Scan — Web Image (push) Failing after 46s
Security Scanning / Trivy Scan — AI Services Image (push) Failing after 43s
Deploy / Deploy to Staging (push) Has been skipped
Deploy / Smoke Test Staging (push) Has been skipped
Deploy / Deploy to Production (push) Has been skipped
Deploy / Smoke Test Production (push) Has been skipped
Security Scanning / Security Gate (push) Failing after 1s
Deploy / Rollback Staging (push) Has been skipped
CI / E2E Tests (push) Has been skipped
CodeQL Analysis / CodeQL (javascript-typescript) (push) Failing after 32s
Deploy / Build API Image (push) Failing after 26s
Deploy / Build Web Image (push) Failing after 10s
E2E Tests / Playwright E2E (push) Failing after 21s
Security Scanning / Dependency Audit (pnpm) (push) Failing after 5s
Security Scanning / Trivy Filesystem Scan (push) Failing after 42s
Deploy / Rollback Production (push) Has been skipped
feat(qa): add smoke test suite + post-deploy workflow
- e2e/api/smoke.spec.ts — 9 @smoke API tests covering health, auth roundtrip,
  token refresh, listings, search, payments, subscriptions, and inquiries
- e2e/web/smoke.spec.ts — 7 @smoke Web tests covering homepage, login/register
  pages, listings, search, listing detail 404 handling, and console-error check
- playwright.config.ts — smoke-api and smoke-web projects (grep: /@smoke/)
  allowing targeted post-deploy execution without the full suite
- .github/workflows/smoke.yml — workflow_dispatch + workflow_call trigger for
  running only the @smoke subset against staging or production URLs

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-04-21 00:47:40 +07:00

109 lines
3.1 KiB
TypeScript

import path from 'node:path';
import { defineConfig, devices } from '@playwright/test';
import { config } from 'dotenv';
// Load .env.test so webServer processes and tests use the test database
if (!process.env.CI) {
config({ path: path.resolve(__dirname, '.env.test'), override: true });
}
// Server ports — configurable via env to avoid conflicts with dev containers.
// Defaults match .env.test (3011/3010); GitHub Actions uses 3001/3000.
const API_PORT = process.env.API_PORT ?? '3001';
const WEB_PORT = process.env.WEB_PORT ?? '3000';
/**
* Playwright E2E configuration for Goodgo Platform.
*
* Projects:
* - "api" — tests against the NestJS API (port 3011 local CI / 3001 GH Actions)
* - "web" — tests against the Next.js frontend (port 3010 local CI / 3000 GH Actions)
*
* Database isolation:
* - globalSetup runs migrations + seed on the test DB
* - globalTeardown cleans up test-generated data after all tests
*/
export default defineConfig({
testDir: './e2e',
globalSetup: './e2e/global-setup.ts',
globalTeardown: './e2e/global-teardown.ts',
fullyParallel: true,
forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0,
workers: process.env.CI ? 1 : undefined,
reporter: process.env.CI
? [['html', { open: 'never' }], ['github']]
: [['html', { open: 'on-failure' }]],
use: {
trace: 'on-first-retry',
screenshot: 'only-on-failure',
},
projects: [
// API E2E tests — no browser needed, uses APIRequestContext
{
name: 'api',
testDir: './e2e/api',
use: {
baseURL: process.env.API_BASE_URL ?? `http://localhost:${API_PORT}/api/v1/`,
},
},
// Web E2E tests — Chromium browser
{
name: 'web',
testDir: './e2e/web',
use: {
...devices['Desktop Chrome'],
baseURL: process.env.WEB_BASE_URL ?? `http://localhost:${WEB_PORT}`,
},
},
// Smoke projects — subsets of api/web tagged @smoke for post-deploy checks
{
name: 'smoke-api',
testDir: './e2e/api',
grep: /@smoke/,
use: {
baseURL: process.env.API_BASE_URL ?? `http://localhost:${API_PORT}/api/v1/`,
},
},
{
name: 'smoke-web',
testDir: './e2e/web',
grep: /@smoke/,
use: {
...devices['Desktop Chrome'],
baseURL: process.env.WEB_BASE_URL ?? `http://localhost:${WEB_PORT}`,
},
},
],
webServer: [
{
command: `PORT=${API_PORT} pnpm --filter @goodgo/api run dev`,
url: `http://localhost:${API_PORT}/api/v1/docs`,
reuseExistingServer: !process.env.CI,
timeout: 60_000,
env: {
...process.env as Record<string, string>,
NODE_ENV: 'test',
PORT: API_PORT,
DATABASE_URL: process.env.DATABASE_URL ?? '',
},
},
{
command: `pnpm exec next dev --port ${WEB_PORT}`,
cwd: './apps/web',
url: `http://localhost:${WEB_PORT}`,
reuseExistingServer: !process.env.CI,
timeout: 30_000,
env: {
...process.env as Record<string, string>,
PORT: WEB_PORT,
NODE_ENV: 'test',
NEXT_PUBLIC_API_URL: `http://localhost:${API_PORT}/api/v1`,
},
},
],
});