2023-11-21 18:33:32 +01:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-11-21 18:33:32 +01:00
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2023-11-21 18:33:32 +01:00
|
|
|
*/
|
|
|
|
|
2023-11-22 14:20:58 +01:00
|
|
|
import { defineConfig } from "@playwright/test";
|
|
|
|
|
2023-11-21 18:33:32 +01:00
|
|
|
const baseURL = process.env["BASE_URL"] ?? "http://localhost:8080";
|
|
|
|
|
2024-06-24 12:30:59 +02:00
|
|
|
export default defineConfig({
|
2023-11-21 18:33:32 +01:00
|
|
|
use: {
|
|
|
|
viewport: { width: 1280, height: 720 },
|
|
|
|
ignoreHTTPSErrors: true,
|
2023-11-29 17:01:41 +01:00
|
|
|
video: "retain-on-failure",
|
2023-11-21 18:33:32 +01:00
|
|
|
baseURL,
|
2023-12-13 15:59:08 +01:00
|
|
|
permissions: ["clipboard-write", "clipboard-read", "microphone"],
|
|
|
|
launchOptions: {
|
|
|
|
args: ["--use-fake-ui-for-media-stream", "--use-fake-device-for-media-stream", "--mute-audio"],
|
|
|
|
},
|
2023-12-12 09:55:29 +01:00
|
|
|
trace: "on-first-retry",
|
2023-11-21 18:33:32 +01:00
|
|
|
},
|
|
|
|
webServer: {
|
2024-10-15 20:01:25 +02:00
|
|
|
command: process.env.CI ? "npx serve -p 8080 -L ./webapp" : "yarn start",
|
2023-11-21 18:33:32 +01:00
|
|
|
url: `${baseURL}/config.json`,
|
|
|
|
reuseExistingServer: true,
|
2024-10-18 15:30:58 +02:00
|
|
|
timeout: (process.env.CI ? 30 : 120) * 1000,
|
2023-11-21 18:33:32 +01:00
|
|
|
},
|
|
|
|
testDir: "playwright/e2e",
|
|
|
|
outputDir: "playwright/test-results",
|
2024-07-25 21:03:00 +02:00
|
|
|
workers: 1,
|
2023-11-30 13:18:35 +01:00
|
|
|
retries: process.env.CI ? 2 : 0,
|
2024-05-10 12:01:08 +02:00
|
|
|
reporter: process.env.CI ? [["blob"], ["github"]] : [["html", { outputFolder: "playwright/html-report" }]],
|
2023-11-28 11:22:25 +01:00
|
|
|
snapshotDir: "playwright/snapshots",
|
|
|
|
snapshotPathTemplate: "{snapshotDir}/{testFilePath}/{arg}-{platform}{ext}",
|
2024-07-15 20:00:45 +02:00
|
|
|
forbidOnly: !!process.env.CI,
|
2023-11-22 14:20:58 +01:00
|
|
|
});
|