Revert "Fix loading-test"

This reverts commit 155d80b3fa.
This commit is contained in:
Dariusz Niemczyk 2021-10-01 15:41:25 +02:00
parent 935f95fcde
commit e15d27b316
No known key found for this signature in database
GPG Key ID: 3E8DC619E3C59A05

View File

@ -39,7 +39,6 @@ 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';
@ -722,7 +721,7 @@ function awaitRoomView(matrixChat, retryLimit, retryCount) {
// state looks good, check the rendered output
ReactTestUtils.findRenderedComponentWithType(
matrixChat, RoomViewClass);
matrixChat, sdk.getComponent('structures.RoomView'));
return Promise.resolve();
}