summaryrefslogtreecommitdiffstats
path: root/playwright.config.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
committerDaniel Baumann <daniel@debian.org>2024-10-18 20:33:49 +0200
commitdd136858f1ea40ad3c94191d647487fa4f31926c (patch)
tree58fec94a7b2a12510c9664b21793f1ed560c6518 /playwright.config.js
parentInitial commit. (diff)
downloadforgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.tar.xz
forgejo-dd136858f1ea40ad3c94191d647487fa4f31926c.zip
Adding upstream version 9.0.0.upstream/9.0.0upstreamdebian
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to '')
-rw-r--r--playwright.config.js103
1 files changed, 103 insertions, 0 deletions
diff --git a/playwright.config.js b/playwright.config.js
new file mode 100644
index 0000000..25e2a7a
--- /dev/null
+++ b/playwright.config.js
@@ -0,0 +1,103 @@
+// @ts-check
+import {devices} from '@playwright/test';
+
+const BASE_URL = process.env.GITEA_URL?.replace?.(/\/$/g, '') || 'http://localhost:3000';
+
+/**
+ * @see https://playwright.dev/docs/test-configuration
+ * @type {import('@playwright/test').PlaywrightTestConfig}
+ */
+export default {
+ testDir: './tests/e2e/',
+ testMatch: /.*\.test\.e2e\.js/, // Match any .test.e2e.js files
+
+ // you can adjust this value locally to match your machine's power,
+ // or pass `--workers x` to playwright
+ workers: process.env.CI ? 1 : 2,
+
+ /* Maximum time one test can run for. */
+ timeout: 30 * 1000,
+
+ expect: {
+ /**
+ * Maximum time expect() should wait for the condition to be met.
+ * For example in `await expect(locator).toHaveText();`
+ */
+ timeout: 2000,
+ },
+
+ /* Fail the build on CI if you accidentally left test.only in the source code. */
+ forbidOnly: Boolean(process.env.CI),
+
+ /* Retry on CI only */
+ retries: process.env.CI ? 1 : 0,
+
+ /* Reporter to use. See https://playwright.dev/docs/test-reporters */
+ reporter: process.env.CI ? 'list' : [['list'], ['html', {outputFolder: 'tests/e2e/reports/', open: 'never'}]],
+
+ /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
+ use: {
+ headless: true, // set to false to debug
+
+ locale: 'en-US',
+
+ /* Maximum time each action such as `click()` can take. Defaults to 0 (no limit). */
+ actionTimeout: 2000,
+
+ /* Maximum time allowed for navigation, such as `page.goto()`. */
+ navigationTimeout: 10 * 1000,
+
+ /* Base URL to use in actions like `await page.goto('/')`. */
+ baseURL: BASE_URL,
+
+ /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
+ trace: 'on-first-retry',
+
+ screenshot: 'only-on-failure',
+ },
+
+ /* Configure projects for major browsers */
+ projects: [
+ {
+ name: 'chromium',
+
+ /* Project-specific settings. */
+ use: {
+ ...devices['Desktop Chrome'],
+ },
+ },
+
+ {
+ name: 'firefox',
+ use: {
+ ...devices['Desktop Firefox'],
+ },
+ },
+
+ {
+ name: 'webkit',
+ use: {
+ ...devices['Desktop Safari'],
+ },
+ },
+
+ /* Test against mobile viewports. */
+ {
+ name: 'Mobile Chrome',
+ use: {
+ ...devices['Pixel 5'],
+ },
+ },
+ {
+ name: 'Mobile Safari',
+ use: {
+ ...devices['iPhone 12'],
+ },
+ },
+ ],
+
+ /* Folder for test artifacts such as screenshots, videos, traces, etc. */
+ outputDir: 'tests/e2e/test-artifacts/',
+ /* Folder for test artifacts such as screenshots, videos, traces, etc. */
+ snapshotDir: 'tests/e2e/test-snapshots/',
+};