From 7455002b1a0cf8d6c736d425415fdc3f27b275ec Mon Sep 17 00:00:00 2001 From: Richard van der Hoff Date: Wed, 12 Jul 2017 00:24:00 +0100 Subject: [PATCH] InteractiveAuthDialogTest: increase timeout Blindly increase the number of attempts, because it's failing on travis, but not on my dev box... --- test/components/views/dialogs/InteractiveAuthDialog-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/components/views/dialogs/InteractiveAuthDialog-test.js b/test/components/views/dialogs/InteractiveAuthDialog-test.js index f555b2c8ef..ecfaba4e2c 100644 --- a/test/components/views/dialogs/InteractiveAuthDialog-test.js +++ b/test/components/views/dialogs/InteractiveAuthDialog-test.js @@ -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" );