InteractiveAuthDialogTest: increase timeout

Blindly increase the number of attempts, because it's failing on travis, but
not on my dev box...
pull/21833/head
Richard van der Hoff 2017-07-12 00:24:00 +01:00
parent 928287b8fc
commit 7455002b1a
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ describe('InteractiveAuthDialog', function () {
/>, parentDiv); />, parentDiv);
// wait for a password box and a submit button // 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( const inputNodes = ReactTestUtils.scryRenderedDOMComponentsWithTag(
dlg, "input" dlg, "input"
); );