Skip to content

Commit b8f5705

Browse files
committed
Fix types
1 parent 1e73093 commit b8f5705

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/element-web-playwright-common/src/testcontainers/HomeserverContainer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
55
Please see LICENSE files in the repository root for full details.
66
*/
77

8-
import { type AbstractStartedContainer, type TestContainer } from "testcontainers";
8+
import { type AbstractStartedContainer, type GenericContainer } from "testcontainers";
99
import { type APIRequestContext, type TestInfo } from "@playwright/test";
1010

1111
import { type StartedMatrixAuthenticationServiceContainer } from "./mas";
@@ -41,7 +41,7 @@ export interface HomeserverInstance {
4141
setThreepid(userId: string, medium: string, address: string): Promise<void>;
4242
}
4343

44-
export interface HomeserverContainer<Config> extends TestContainer {
44+
export interface HomeserverContainer<Config> extends GenericContainer {
4545
/**
4646
* Set a configuration field in the config
4747
* @param key - the key to set

0 commit comments

Comments
 (0)