mirror of
https://github.com/ramvignesh-b/pi-ku.git
synced 2026-05-04 15:56:56 +00:00
3c9c72d25f
* feat: update E2E testing configuration to use ssl * fix: add IPv6 loopback support to mkcert generation command in CI workflow * feat: centralize SSL certificate generation into a reusable workflow job * fix: use static ip in mkcert command * fix: correct mkcert command args * feat: implement certificate caching in CI workflow to persist SSL files across jobs * refactor: optimize CI workflow caching * ci: implement certificate caching in workflow * fix: correct certificate caching keys and fix environment file paths in CI workflows * fix: correct environment file paths and parallelize frontend dependency installation in CI workflow * test: set TZ environment variable to Asia/Kolkata in vitest configuration * fix: force en-US locale in Intl formatters to ensure consistent date and time output * fix: update MAILPIT_API_URL protocol from https to http in e2e environment example * chore: set test timezone to Asia/Kolkata * ci: add sll support and enhance e2e workflow * ci: improve compatibility for docker-compose execution * refactor: improve container orchestration detection and fallback logic in e2e test script * feat: add container runtime validation and force docker usage in CI environment * feat: add caching for Playwright dependencies in CI workflow * chore: update restart policy to unless-stopped for postgres and mailpit services in e2e docker-compose --------- Co-authored-by: ramvignesh-b <ramvignesh-b@github.com>
74 lines
2.1 KiB
TypeScript
74 lines
2.1 KiB
TypeScript
import path from "node:path";
|
|
import process, { env } from "node:process";
|
|
import { defineConfig, devices } from "@playwright/test";
|
|
import dotenv from "dotenv";
|
|
import { getBaseUrl } from "./utils/url-builder";
|
|
|
|
/**
|
|
* Read environment variables from file.
|
|
*/
|
|
dotenv.config({ path: path.resolve(process.cwd(), "../.env.e2e") });
|
|
const baseUrl = getBaseUrl(
|
|
env.SSL_ENABLED === "true",
|
|
env.FRONTEND_DOMAIN,
|
|
env.FRONTEND_PORT,
|
|
);
|
|
|
|
console.log(baseUrl);
|
|
export default defineConfig({
|
|
timeout: 60000,
|
|
expect: {
|
|
timeout: 10000,
|
|
},
|
|
testDir: "./e2e",
|
|
/* Run tests in files in parallel */
|
|
fullyParallel: true,
|
|
/* Fail the build on CI if you accidentally left test.only in the source code. */
|
|
forbidOnly: !!process.env.CI,
|
|
/* Retry on CI only */
|
|
retries: process.env.CI ? 2 : 0,
|
|
/* Opt out of parallel tests on CI. */
|
|
workers: process.env.CI ? 1 : undefined,
|
|
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
|
reporter: "html",
|
|
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
|
use: {
|
|
/* Base URL to use in actions like `await page.goto('/')`. */
|
|
baseURL: baseUrl,
|
|
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
|
|
actionTimeout: 20000,
|
|
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
|
|
trace: "on-first-retry",
|
|
/* Capture screenshot on failure */
|
|
screenshot: "only-on-failure",
|
|
/* Capture video on failure */
|
|
video: "retain-on-failure",
|
|
/* Ignore HTTPS errors */
|
|
ignoreHTTPSErrors: true,
|
|
},
|
|
|
|
/* Configure projects for major browsers */
|
|
projects: [
|
|
{
|
|
name: "chromium",
|
|
use: { ...devices["Desktop Chrome"] },
|
|
},
|
|
{
|
|
name: "firefox",
|
|
use: { ...devices["Desktop Firefox"] },
|
|
},
|
|
],
|
|
|
|
/* Run your local dev server before starting the tests */
|
|
webServer: {
|
|
command: "bun run dev -- --mode e2e",
|
|
url: getBaseUrl(
|
|
process.env.SSL_ENABLED === "true",
|
|
process.env.FRONTEND_DOMAIN,
|
|
process.env.FRONTEND_PORT,
|
|
),
|
|
reuseExistingServer: !process.env.CI,
|
|
ignoreHTTPSErrors: true,
|
|
},
|
|
});
|