Fix loading-test

pull/19267/head
Dariusz Niemczyk 2021-10-01 15:18:50 +02:00
parent ecf29d9409
commit 155d80b3fa
No known key found for this signature in database
GPG Key ID: 3E8DC619E3C59A05
1 changed files with 2 additions and 1 deletions

View File

@ -39,6 +39,7 @@ import {sleep} from "../test-utils";
import "fake-indexeddb/auto";
import {cleanLocalstorage} from "../test-utils";
import {IndexedDBCryptoStore} from "matrix-js-sdk/src/crypto/store/indexeddb-crypto-store";
import { RoomView as RoomViewClass } from 'matrix-react-sdk/src/components/structures/RoomView';
const DEFAULT_HS_URL='http://my_server';
const DEFAULT_IS_URL='http://my_is';
@ -721,7 +722,7 @@ function awaitRoomView(matrixChat, retryLimit, retryCount) {
// state looks good, check the rendered output
ReactTestUtils.findRenderedComponentWithType(
matrixChat, sdk.getComponent('structures.RoomView'));
matrixChat, RoomViewClass);
return Promise.resolve();
}