We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b0a84e commit 3c06852Copy full SHA for 3c06852
tests/integration/support/exceptions.js
@@ -34,7 +34,9 @@ Cypress.Commands.add('handleExceptions', () => {
34
err.message.includes(
35
"Cannot read properties of undefined (reading 'showAt')",
36
) ||
37
- err.message.includes('items is not iterable')
+ // Exceptions due to reported issues to monaco editor.
38
+ err.message.includes('items is not iterable') ||
39
+ err.message.includes('Canceled')
40
)
41
return false;
42
});
0 commit comments