1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

InteractiveAuthDialogTest: increase timeout

Blindly increase the number of attempts, because it's failing on travis, but
not on my dev box...
This commit is contained in:
Richard van der Hoff
2017-07-12 00:24:00 +01:00
parent 928287b8fc
commit 7455002b1a

View File

@ -70,7 +70,7 @@ describe('InteractiveAuthDialog', function () {
/>, parentDiv);
// wait for a password box and a submit button
return MatrixReactTestUtils.waitForRenderedDOMComponentWithTag(dlg, "form").then((formNode) => {
return MatrixReactTestUtils.waitForRenderedDOMComponentWithTag(dlg, "form", 2).then((formNode) => {
const inputNodes = ReactTestUtils.scryRenderedDOMComponentsWithTag(
dlg, "input"
);