Ok, I think I fixed all e2e tests

This commit is contained in:
Tom Coleman 2022-07-01 15:44:16 +10:00
parent a54747bf13
commit b4130f3675

View File

@ -98,6 +98,7 @@ Cypress.Commands.add('navigateToStory', (kind, name) => {
cy.log(`navigateToStory ${kind} ${name}`); cy.log(`navigateToStory ${kind} ${name}`);
// Section might be collapsed // Section might be collapsed
if (Cypress.$(`#${kindId}`).length) {
cy.get(`#${kindId}`).then(async ($item) => { cy.get(`#${kindId}`).then(async ($item) => {
if ($item.attr('aria-expanded') === 'false') { if ($item.attr('aria-expanded') === 'false') {
await $item.click(); await $item.click();
@ -105,6 +106,7 @@ Cypress.Commands.add('navigateToStory', (kind, name) => {
cy.wait(300); cy.wait(300);
} }
}); });
}
cy.get(storyLinkId).click({ force: true }); cy.get(storyLinkId).click({ force: true });