Skip to content

Commit 5b0a84e

Browse files
Test correction
1 parent 8dd9dab commit 5b0a84e

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

tests/integration/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/integration/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"devDependencies": {
2222
"@continuum/continuum-javascript-professional": "file:./lib/continuum-continuum-javascript-professional-6.1.0.tgz",
23-
"cypress": "^14.2.1",
23+
"cypress": "^14.4.0",
2424
"cypress-file-upload": "^5.0.8",
2525
"cypress-plugin-tab": "^1.0.5",
2626
"js-yaml": "^4.1.0"

tests/integration/support/exceptions.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ Cypress.Commands.add('handleExceptions', () => {
3333
) ||
3434
err.message.includes(
3535
"Cannot read properties of undefined (reading 'showAt')",
36-
)
36+
) ||
37+
err.message.includes('items is not iterable')
3738
)
3839
return false;
3940
});

tests/integration/tests/cluster/test-cluster-overview.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ context('Test Cluster Overview', () => {
7070
// remove injection
7171
cy.getLeftNav()
7272
.contains('Back To Cluster Details')
73-
.click();
73+
.click({ force: true });
7474
cy.navigateTo('Configuration', 'Extensions');
7575
cy.deleteFromGenericList('Extension', 'hpatest');
7676

0 commit comments

Comments
 (0)