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
The toaster tests are [intermittently] failing in "Check toaster stacking permanent messages", at least on FF on Saucelabs.
The failure error message isn't reported; rather the whole test just times out.
Meta-issues:
The Promise chain doesn't make sense. For example:
.then(pollUntil(codeIns(perm1),[],intern.config.WAIT_TIMEOUT,intern.config.POLL_INTERVAL)).then(function(){},functionerrback1(){thrownewError("perm1 not inserted");}).then(pollUntil(codeIns(exp2000),[],intern.config.WAIT_TIMEOUT,intern.config.POLL_INTERVAL)).then(function(){},functionerrback2(){thrownewError("exp2000 not inserted");})
When errback1 throws the error, we want the whole test to abort, but instead the error gets passed to errback2.
The test is overly-complicated due to trying to use dynamic id's. Making the ids (and global variable names) deterministic would mean that the test wouldn't have to query the page to get the ids.
The text was updated successfully, but these errors were encountered:
Start to switch to deterministic ids to simplify tests.
Re-enable test disabled due to issue that is no longer an issue.
Disable tests that aren't working.
Various cleanup.
Refs #717.
Refs ibm-js/dpointer#23.
Start to switch to deterministic ids to simplify tests.
Re-enable test disabled due to issue that is no longer an issue.
Disable tests that aren't working.
Various cleanup.
Refs #717.
Refs ibm-js/dpointer#23.
Issues:
Meta-issues:
When
errback1
throws the error, we want the whole test to abort, but instead the error gets passed toerrback2
.The text was updated successfully, but these errors were encountered: