2023-11-21 18:33:32 +01:00
|
|
|
/*
|
|
|
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2023-11-22 14:20:58 +01:00
|
|
|
import { defineConfig } from "@playwright/test";
|
|
|
|
|
|
|
|
import { TestOptions } from "./playwright/element-web-test";
|
2023-11-21 18:33:32 +01:00
|
|
|
|
|
|
|
const baseURL = process.env["BASE_URL"] ?? "http://localhost:8080";
|
|
|
|
|
2023-11-22 14:20:58 +01:00
|
|
|
export default defineConfig<TestOptions>({
|
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-04 12:56:48 +01:00
|
|
|
permissions: ["clipboard-write", "clipboard-read"],
|
2023-11-21 18:33:32 +01:00
|
|
|
},
|
|
|
|
webServer: {
|
|
|
|
command: process.env.CI ? "npx serve -p 8080 -L ../webapp" : "yarn --cwd ../element-web start",
|
|
|
|
url: `${baseURL}/config.json`,
|
|
|
|
reuseExistingServer: true,
|
|
|
|
},
|
|
|
|
testDir: "playwright/e2e",
|
|
|
|
outputDir: "playwright/test-results",
|
|
|
|
workers: 1,
|
2023-11-30 13:18:35 +01:00
|
|
|
retries: process.env.CI ? 2 : 0,
|
2023-11-21 18:33:32 +01:00
|
|
|
reporter: process.env.CI ? "blob" : [["html", { outputFolder: "playwright/html-report" }]],
|
2023-11-22 14:20:58 +01:00
|
|
|
projects: [
|
|
|
|
{
|
|
|
|
name: "Legacy Crypto",
|
2023-11-28 13:08:05 +01:00
|
|
|
use: { cryptoBackend: "legacy" },
|
2023-11-22 14:20:58 +01:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "Rust Crypto",
|
2023-11-28 13:08:05 +01:00
|
|
|
use: { cryptoBackend: "rust" },
|
2023-11-22 14:20:58 +01:00
|
|
|
},
|
|
|
|
],
|
2023-11-28 11:22:25 +01:00
|
|
|
snapshotDir: "playwright/snapshots",
|
|
|
|
snapshotPathTemplate: "{snapshotDir}/{testFilePath}/{arg}-{platform}{ext}",
|
2023-11-22 14:20:58 +01:00
|
|
|
});
|