Fix cypress

This commit is contained in:
Tom Coleman 2022-07-12 14:53:36 +10:00
parent db7f753ef9
commit 054e806955

View File

@ -116,7 +116,8 @@ Cypress.Commands.add('navigateToStory', (kind, name) => {
cy.wait(300);
// assert url changes
cy.url().should('include', `path=/story/${kindId}--${storyId}`);
const viewMode = name === 'docs' ? 'docs' : 'story';
cy.url().should('include', `path=/${viewMode}/${kindId}--${storyId}`);
cy.get(storyLinkId).should('have.attr', 'data-selected', 'true');
// A pause is good when switching stories