test: End to end integrated test for call widget

This commit is contained in:
Valere
2025-03-25 16:09:38 +01:00
parent 7ca70cf4ab
commit 0fbde40359
8 changed files with 387 additions and 1 deletions
+16
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;
};
}
}