test: End to end integrated test for call widget

This commit is contained in:
Valere
2025-03-25 08:18:34 +01:00
parent 7ca70cf4ab
commit 0fbde40359
8 changed files with 387 additions and 1 deletions

16
playwright/global.d.ts vendored Normal file
View File

@@ -0,0 +1,16 @@
/*
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 type * as Matrix from "matrix-js-sdk/src";
declare global {
interface Window {
mxMatrixClientPeg: {
get(): Matrix.MatrixClient;
};
}
}