Skip to content

Commit 3c06852

Browse files
Tests corrections
1 parent 5b0a84e commit 3c06852

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/integration/support/exceptions.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,9 @@ Cypress.Commands.add('handleExceptions', () => {
3434
err.message.includes(
3535
"Cannot read properties of undefined (reading 'showAt')",
3636
) ||
37-
err.message.includes('items is not iterable')
37+
// Exceptions due to reported issues to monaco editor.
38+
err.message.includes('items is not iterable') ||
39+
err.message.includes('Canceled')
3840
)
3941
return false;
4042
});

0 commit comments

Comments
 (0)