You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 29, 2024. It is now read-only.
Discussion and promise to do it in #5034 for the following
(line 655ish)
if (timeout) {
let errMsg = `Timed out waiting for asynchronous Angular tasks to finish after ` +
`${timeout}. This may be because the current page is not an Angular ` +
`application. Please see the FAQ for more details: ` +
and
(line 642ish)
}, this.allScriptsTimeout, 'Plugins.waitForCondition()');
} catch (err) {
let timeout: RegExpExecArray;
if (/asynchronous script timeout/.test(err.message)) {
The text was updated successfully, but these errors were encountered:
I'm not sure if there's a value add here. I would refactor by moving the error message out. It would make it a little more readable; however, this private method would only be used in one location. I am going to close this as a won't fix.
Discussion and promise to do it in #5034 for the following
(line 655ish)
and
(line 642ish)
The text was updated successfully, but these errors were encountered: