Docker / Docker Buildx (push) Has been cancelled
Build Debian package / Build package (release) Has been cancelled
Build and Deploy / prepare (release) Has been cancelled
Deploy release / Deploy to Cloudflare Pages (release) Has been cancelled
Build and Deploy / Trigger Pro pipeline (release) Has been cancelled
Build and Deploy / Windows arm64 (release) Has been cancelled
Build and Deploy / Windows x64 (release) Has been cancelled
Build and Deploy / macOS (release) Has been cancelled
Build and Deploy / Linux amd64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / Linux arm64 (sqlcipher static) (release) Has been cancelled
Build and Deploy / ${{ needs.prepare.outputs.deploy == 'true' && 'Deploy' || 'Deploy (dry-run)' }} (release) Has been cancelled
Build and Deploy / Deploy builds to ESS (release) Has been cancelled
45 lines
1.7 KiB
TypeScript
45 lines
1.7 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
import { resolve, dirname } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
import { test, expect } from "../../element-desktop-test.js";
|
|
|
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
|
|
test.describe("App config options", () => {
|
|
test.describe("Should load custom config via env", () => {
|
|
test.slow();
|
|
test.use({
|
|
extraEnv: {
|
|
ELEMENT_DESKTOP_CONFIG_JSON: resolve(__dirname, "../..", "fixtures/custom-config.json"),
|
|
},
|
|
});
|
|
test("should launch and use configured homeserver", async ({ page }) => {
|
|
await page.locator("#matrixchat").waitFor();
|
|
await page.locator(".mx_Welcome").waitFor();
|
|
await expect(page).toHaveURL("vector://vector/webapp/#/welcome");
|
|
await page.getByText("Sign in").click();
|
|
await page.getByText("matrix.example.org", { exact: true }).waitFor();
|
|
});
|
|
});
|
|
test.describe("Should load custom config via argument", () => {
|
|
test.slow();
|
|
test.use({
|
|
extraArgs: ["--config", resolve(__dirname, "../..", "fixtures/custom-config.json")],
|
|
});
|
|
test("should launch and use configured homeserver", async ({ page }) => {
|
|
await page.locator("#matrixchat").waitFor();
|
|
await page.locator(".mx_Welcome").waitFor();
|
|
await expect(page).toHaveURL("vector://vector/webapp/#/welcome");
|
|
await page.getByText("Sign in").click();
|
|
await page.getByText("matrix.example.org", { exact: true }).waitFor();
|
|
});
|
|
});
|
|
});
|