| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- import { defineConfig, devices } from "@playwright/test";
- import dotenv from "dotenv";
- import path from "path";
- import { fileURLToPath } from "url";
- const __filename = fileURLToPath(import.meta.url);
- const __dirname = path.dirname(__filename);
- export const TESTS_ROOT_PATH = __dirname;
- export const STATE_DIR_PATH = `${ TESTS_ROOT_PATH }/.state/`;
- export const ADMIN_AUTH_STATE_PATH = `${ STATE_DIR_PATH }/admin-auth.json`;
- dotenv.config({ path: path.resolve(__dirname, "../../../../../.env") });
- export default defineConfig({
- testDir: "./tests",
- timeout: 140 * 1000,
- expect: { timeout: 20 * 1000 },
- outputDir: "./test-results",
- fullyParallel: false,
- workers: 1,
- forbidOnly: !!process.env.CI,
- retries: 0,
- reportSlowTests: null,
- reporter: [
- ["list"],
-
- [
- "html",
- {
- outputFolder: "./playwright-report",
- },
- ],
- ],
- use: {
- baseURL: `${process.env.APP_URL}/`.replace(/\/+$/, "/"),
- screenshot: { mode: "only-on-failure", fullPage: true },
- video: "retain-on-failure",
- trace: "retain-on-failure",
- },
- projects: [
- {
- name: "chromium",
- use: { ...devices["Desktop Chrome"] },
- },
- ],
- });
|