diff --git a/test/login-test.html b/test/login-test.html index b19c19a..b537da2 100644 --- a/test/login-test.html +++ b/test/login-test.html @@ -118,6 +118,11 @@ // Remove `allow-redirect` to create an async call from iron-form loginForm.removeAttribute('allow-redirect'); + // FIXME: Workaround for IE11 issue that breaks if it tries to send a request using an empty string + // Can be removed once we introduce the `login` event + const formElement = login.shadowRoot.querySelector('form'); + formElement.setAttribute('action', '/'); + const submitSpy = sinon.spy(login, 'submit'); MockInteractions.pressEnter(password);