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
|
|
|
*/
|
|
|
|
|
2024-12-04 12:55:27 +01:00
|
|
|
import { defineConfig, devices } from "@playwright/test";
|
2023-11-22 14:20:58 +01:00
|
|
|
|
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({
|
2024-12-20 00:42:09 +01:00
|
|
|
projects: [
|
|
|
|
{
|
|
|
|
name: "Chrome",
|
|
|
|
use: {
|
|
|
|
...devices["Desktop Chrome"],
|
|
|
|
channel: "chromium",
|
|
|
|
permissions: ["clipboard-write", "clipboard-read", "microphone"],
|
|
|
|
launchOptions: {
|
|
|
|
args: ["--use-fake-ui-for-media-stream", "--use-fake-device-for-media-stream", "--mute-audio"],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Firefox",
|
|
|
|
use: {
|
|
|
|
...devices["Desktop Firefox"],
|
|
|
|
launchOptions: {
|
|
|
|
firefoxUserPrefs: {
|
|
|
|
"permissions.default.microphone": 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
// This is needed to work around an issue between Playwright routes, Firefox, and Service workers
|
|
|
|
// https://github.com/microsoft/playwright/issues/33561#issuecomment-2471642120
|
|
|
|
serviceWorkers: "block",
|
|
|
|
},
|
|
|
|
ignoreSnapshots: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "WebKit",
|
|
|
|
use: {
|
|
|
|
...devices["Desktop Safari"],
|
|
|
|
// Seemingly WebKit has the same issue as Firefox in Playwright routes not working
|
|
|
|
// https://playwright.dev/docs/network#missing-network-events-and-service-workers
|
|
|
|
serviceWorkers: "block",
|
|
|
|
},
|
|
|
|
ignoreSnapshots: true,
|
|
|
|
},
|
|
|
|
],
|
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-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
|
|
|
});
|