mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-30 02:23:54 +00:00
62 lines
1.9 KiB
TypeScript
62 lines
1.9 KiB
TypeScript
import type { PlaywrightTestConfig } from "@playwright/test";
|
|
import { devices } from "@playwright/test";
|
|
|
|
require("dotenv").config();
|
|
|
|
export const baserowConfig = {
|
|
PUBLIC_WEB_FRONTEND_URL: process.env.PUBLIC_WEB_FRONTEND_URL
|
|
? process.env.PUBLIC_WEB_FRONTEND_URL
|
|
: "http://localhost:3000",
|
|
PUBLIC_BACKEND_URL: process.env.PUBLIC_BACKEND_URL
|
|
? process.env.PUBLIC_BACKEND_URL
|
|
: "http://localhost:8000",
|
|
};
|
|
|
|
/**
|
|
* Development config to be used when running locally
|
|
* See https://playwright.dev/docs/test-configuration.
|
|
*/
|
|
const config: PlaywrightTestConfig = {
|
|
testDir: "./tests",
|
|
/* Maximum time one test can run for. */
|
|
timeout: 60 * 1000,
|
|
expect: {
|
|
/**
|
|
* Maximum time expect() should wait for the condition to be met.
|
|
* For example in `await expect(locator).toHaveText();`
|
|
*/
|
|
timeout: 5000,
|
|
},
|
|
fullyParallel: true,
|
|
/* Fail the build on CI if you accidentally left test.only in the source code. */
|
|
forbidOnly: !!process.env.CI ? true : false,
|
|
retries: !!process.env.CI ? 2 : 0,
|
|
workers: !!process.env.CI ? 2 : 3,
|
|
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
|
reporter: !!process.env.CI ? [["dot"], ["html"]] : "list",
|
|
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
|
use: {
|
|
/* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
|
|
actionTimeout: 0,
|
|
/* Base URL to use in actions like `await page.goto('/')`. */
|
|
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
|
|
trace: "on-first-retry",
|
|
video: "on-first-retry",
|
|
},
|
|
projects: [
|
|
{
|
|
name: "chrome",
|
|
use: {
|
|
...devices["Desktop Chrome"],
|
|
},
|
|
},
|
|
{
|
|
name: "firefox",
|
|
use: {
|
|
...devices["Desktop Firefox"],
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
export default config;
|