Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
import { defineConfig, devices } from '@playwright/test';
|
|
|
|
|
|
|
|
|
|
export default defineConfig({
|
test(e2e): exhaustive click-through suite + destructive narrow tests
PR 14: adds a tier-3.5 Playwright pass that opens every refactored page,
clicks every visible button/link/role=button, and asserts no console
errors, no app-side network 4xx/5xx, and no click-time exceptions.
Helper:
- tests/helpers/click-everything.ts — shared `clickEverythingOnPage`
with default skips for destructive selectors (archive, delete,
transfer, sign-out), auto-closing of dialogs, and return-to-start
after navigation.
Exhaustive specs (tests/e2e/exhaustive/):
- 01-yachts: list + detail + transfer dialog
- 02-companies: list + detail + add-membership dialog
- 03-reservations: berth list + detail reservations tab + reserve
dialog
- 04-client-detail: list + detail walking every tab
- 05-eoi-generate: generate dialog opens with Documenso option
- 06-invoice-form: new-invoice dialog billing-entity toggle
- 07-berths: list + detail walking every tab
- 08-portal: client portal yachts / memberships / reservations
- 09-navigation: every primary nav target loads cleanly
Destructive specs (tests/e2e/destructive/):
- 01-yacht-archive: create-via-API → archive via UI → assert removed.
Skips with a clear message when the global setup does not seed an
owner client (avoids brittle failures while the full destructive
fixture lands).
Playwright config: testDir hoisted to ./tests/e2e; new `exhaustive` and
`destructive` projects share the existing setup project. New scripts
test:e2e / test:e2e:smoke / test:e2e:exhaustive / test:e2e:destructive
in package.json drive each project independently.
CI integration deferred — no .github/workflows/* exists in this repo
yet, so the PR 14 task to wire a separate CI job is N/A. The new
projects will pick up automatically when a workflow lands.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 14:06:10 +02:00
|
|
|
testDir: './tests/e2e',
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
fullyParallel: false,
|
|
|
|
|
forbidOnly: !!process.env.CI,
|
|
|
|
|
retries: 0,
|
|
|
|
|
workers: 1, // Sequential — so tests can build on each other
|
|
|
|
|
reporter: [['list'], ['html', { open: 'never' }]],
|
|
|
|
|
timeout: 60_000,
|
|
|
|
|
expect: { timeout: 10_000 },
|
|
|
|
|
|
|
|
|
|
use: {
|
|
|
|
|
baseURL: 'http://localhost:3000',
|
|
|
|
|
trace: 'on-first-retry',
|
|
|
|
|
screenshot: 'only-on-failure',
|
|
|
|
|
video: 'retain-on-failure',
|
|
|
|
|
actionTimeout: 15_000,
|
|
|
|
|
navigationTimeout: 30_000,
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
projects: [
|
|
|
|
|
{
|
|
|
|
|
name: 'setup',
|
test(e2e): exhaustive click-through suite + destructive narrow tests
PR 14: adds a tier-3.5 Playwright pass that opens every refactored page,
clicks every visible button/link/role=button, and asserts no console
errors, no app-side network 4xx/5xx, and no click-time exceptions.
Helper:
- tests/helpers/click-everything.ts — shared `clickEverythingOnPage`
with default skips for destructive selectors (archive, delete,
transfer, sign-out), auto-closing of dialogs, and return-to-start
after navigation.
Exhaustive specs (tests/e2e/exhaustive/):
- 01-yachts: list + detail + transfer dialog
- 02-companies: list + detail + add-membership dialog
- 03-reservations: berth list + detail reservations tab + reserve
dialog
- 04-client-detail: list + detail walking every tab
- 05-eoi-generate: generate dialog opens with Documenso option
- 06-invoice-form: new-invoice dialog billing-entity toggle
- 07-berths: list + detail walking every tab
- 08-portal: client portal yachts / memberships / reservations
- 09-navigation: every primary nav target loads cleanly
Destructive specs (tests/e2e/destructive/):
- 01-yacht-archive: create-via-API → archive via UI → assert removed.
Skips with a clear message when the global setup does not seed an
owner client (avoids brittle failures while the full destructive
fixture lands).
Playwright config: testDir hoisted to ./tests/e2e; new `exhaustive` and
`destructive` projects share the existing setup project. New scripts
test:e2e / test:e2e:smoke / test:e2e:exhaustive / test:e2e:destructive
in package.json drive each project independently.
CI integration deferred — no .github/workflows/* exists in this repo
yet, so the PR 14 task to wire a separate CI job is N/A. The new
projects will pick up automatically when a workflow lands.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 14:06:10 +02:00
|
|
|
testMatch: /smoke\/global-setup\.ts/,
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'smoke',
|
test(e2e): exhaustive click-through suite + destructive narrow tests
PR 14: adds a tier-3.5 Playwright pass that opens every refactored page,
clicks every visible button/link/role=button, and asserts no console
errors, no app-side network 4xx/5xx, and no click-time exceptions.
Helper:
- tests/helpers/click-everything.ts — shared `clickEverythingOnPage`
with default skips for destructive selectors (archive, delete,
transfer, sign-out), auto-closing of dialogs, and return-to-start
after navigation.
Exhaustive specs (tests/e2e/exhaustive/):
- 01-yachts: list + detail + transfer dialog
- 02-companies: list + detail + add-membership dialog
- 03-reservations: berth list + detail reservations tab + reserve
dialog
- 04-client-detail: list + detail walking every tab
- 05-eoi-generate: generate dialog opens with Documenso option
- 06-invoice-form: new-invoice dialog billing-entity toggle
- 07-berths: list + detail walking every tab
- 08-portal: client portal yachts / memberships / reservations
- 09-navigation: every primary nav target loads cleanly
Destructive specs (tests/e2e/destructive/):
- 01-yacht-archive: create-via-API → archive via UI → assert removed.
Skips with a clear message when the global setup does not seed an
owner client (avoids brittle failures while the full destructive
fixture lands).
Playwright config: testDir hoisted to ./tests/e2e; new `exhaustive` and
`destructive` projects share the existing setup project. New scripts
test:e2e / test:e2e:smoke / test:e2e:exhaustive / test:e2e:destructive
in package.json drive each project independently.
CI integration deferred — no .github/workflows/* exists in this repo
yet, so the PR 14 task to wire a separate CI job is N/A. The new
projects will pick up automatically when a workflow lands.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-04-26 14:06:10 +02:00
|
|
|
testMatch: /smoke\/\d{2}-.*\.spec\.ts/,
|
|
|
|
|
dependencies: ['setup'],
|
|
|
|
|
use: {
|
|
|
|
|
...devices['Desktop Chrome'],
|
|
|
|
|
viewport: { width: 1440, height: 900 },
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'exhaustive',
|
|
|
|
|
testMatch: /exhaustive\/.*\.spec\.ts/,
|
|
|
|
|
dependencies: ['setup'],
|
|
|
|
|
use: {
|
|
|
|
|
...devices['Desktop Chrome'],
|
|
|
|
|
viewport: { width: 1440, height: 900 },
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
name: 'destructive',
|
|
|
|
|
testMatch: /destructive\/.*\.spec\.ts/,
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
dependencies: ['setup'],
|
|
|
|
|
use: {
|
|
|
|
|
...devices['Desktop Chrome'],
|
|
|
|
|
viewport: { width: 1440, height: 900 },
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-04-27 15:25:06 +02:00
|
|
|
{
|
|
|
|
|
// Real-API tests hit live external services (Documenso, IMAP, etc.).
|
|
|
|
|
// Opt-in only: pnpm exec playwright test --project=realapi
|
|
|
|
|
name: 'realapi',
|
|
|
|
|
testMatch: /realapi\/.*\.spec\.ts/,
|
|
|
|
|
dependencies: ['setup'],
|
|
|
|
|
timeout: 120_000,
|
|
|
|
|
use: {
|
|
|
|
|
...devices['Desktop Chrome'],
|
|
|
|
|
viewport: { width: 1440, height: 900 },
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-04-27 15:42:40 +02:00
|
|
|
{
|
|
|
|
|
// Visual regression baselines. Regenerate with --update-snapshots after
|
|
|
|
|
// intentional UI changes; otherwise pnpm exec playwright test --project=visual
|
|
|
|
|
// diffs against the committed PNGs.
|
|
|
|
|
name: 'visual',
|
|
|
|
|
testMatch: /visual\/.*\.spec\.ts/,
|
|
|
|
|
dependencies: ['setup'],
|
|
|
|
|
use: {
|
|
|
|
|
...devices['Desktop Chrome'],
|
|
|
|
|
viewport: { width: 1440, height: 900 },
|
|
|
|
|
},
|
|
|
|
|
},
|
2026-04-29 13:49:38 +02:00
|
|
|
{
|
|
|
|
|
// Mobile / tablet audit — visits every page in headed Chromium at iPhone
|
|
|
|
|
// viewports (portrait), screenshots full-page to .audit/mobile/<viewport>/,
|
|
|
|
|
// and writes an index.md. Depends on `setup` for seeded admin + port-role.
|
|
|
|
|
name: 'mobile-audit',
|
|
|
|
|
testMatch: /audit\/mobile\.spec\.ts/,
|
|
|
|
|
dependencies: ['setup'],
|
|
|
|
|
timeout: 600_000,
|
|
|
|
|
use: {
|
|
|
|
|
headless: false,
|
|
|
|
|
launchOptions: { slowMo: 200 },
|
|
|
|
|
screenshot: 'off',
|
|
|
|
|
video: 'off',
|
|
|
|
|
trace: 'off',
|
|
|
|
|
},
|
|
|
|
|
},
|
Initial commit: Port Nimara CRM (Layers 0-4)
Full CRM rebuild with Next.js 15, TypeScript, Tailwind, Drizzle ORM,
PostgreSQL, Redis, BullMQ, MinIO, and Socket.io. Includes 461 source
files covering clients, berths, interests/pipeline, documents/EOI,
expenses/invoices, email, notifications, dashboard, admin, and
client portal. CI/CD via Gitea Actions with Docker builds.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 11:52:51 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// Don't start the dev server — we expect it to already be running
|
|
|
|
|
webServer: undefined,
|
|
|
|
|
});
|