mirror of
https://github.com/vector-im/element-call.git
synced 2026-01-18 02:32:27 +00:00
90 lines
2.4 KiB
TypeScript
90 lines
2.4 KiB
TypeScript
/*
|
|
Copyright 2025 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
import { defineConfig, devices } from "@playwright/test";
|
|
|
|
const baseURL = process.env.USE_DOCKER
|
|
? "http://localhost:8080"
|
|
: "https://localhost:3000";
|
|
|
|
/**
|
|
* See https://playwright.dev/docs/test-configuration.
|
|
*/
|
|
export default defineConfig({
|
|
testDir: "./playwright",
|
|
/* Run tests in files in parallel */
|
|
fullyParallel: true,
|
|
/* Fail the build on CI if you accidentally left test.only in the source code. */
|
|
forbidOnly: !!process.env.CI,
|
|
/* Retry on CI only */
|
|
retries: process.env.CI ? 2 : 0,
|
|
/* Opt out of parallel tests on CI. */
|
|
workers: process.env.CI ? 1 : undefined,
|
|
/* Reporter to use. See https://playwright.dev/docs/test-reporters */
|
|
reporter: "html",
|
|
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
|
use: {
|
|
/* Base URL to use in actions like `await page.goto('/')`. */
|
|
baseURL,
|
|
|
|
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
|
|
trace: "on-first-retry",
|
|
},
|
|
/* Configure projects for major browsers */
|
|
projects: [
|
|
{
|
|
name: "chromium",
|
|
use: {
|
|
...devices["Desktop Chrome"],
|
|
permissions: [
|
|
"clipboard-write",
|
|
"clipboard-read",
|
|
"microphone",
|
|
"camera",
|
|
],
|
|
ignoreHTTPSErrors: true,
|
|
launchOptions: {
|
|
args: [
|
|
"--use-fake-ui-for-media-stream",
|
|
"--use-fake-device-for-media-stream",
|
|
"--mute-audio",
|
|
],
|
|
},
|
|
},
|
|
},
|
|
|
|
{
|
|
name: "firefox",
|
|
use: {
|
|
...devices["Desktop Firefox"],
|
|
ignoreHTTPSErrors: true,
|
|
launchOptions: {
|
|
firefoxUserPrefs: {
|
|
"permissions.default.microphone": 1,
|
|
"permissions.default.camera": 1,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
// No safari for now, until I find a solution to fix `Not allowed to request resource` due to calling
|
|
// clear http to the homeserver
|
|
],
|
|
|
|
/* Run your local dev server before starting the tests */
|
|
webServer: {
|
|
command: "./scripts/playwright-webserver-command.sh",
|
|
url: baseURL,
|
|
reuseExistingServer: !process.env.CI,
|
|
ignoreHTTPSErrors: true,
|
|
gracefulShutdown: {
|
|
signal: "SIGTERM",
|
|
timeout: 500,
|
|
},
|
|
},
|
|
});
|