mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:21:07 +08:00
19 lines
497 B
TypeScript
19 lines
497 B
TypeScript
describe('Basic Flow', () => {
|
|
before(() => {
|
|
cy.visitStorybook();
|
|
});
|
|
|
|
it('should load welcome flow', () => {
|
|
cy.navigateToStory('example-introduction', 'page');
|
|
|
|
// assert url changes
|
|
cy.url().should('include', 'path=/story/example-introduction--page');
|
|
|
|
// check for selected element
|
|
cy.get('#example-introduction--page').should('have.class', 'selected');
|
|
|
|
// check for content
|
|
cy.getDocsElement().should('contain.text', 'Welcome to Storybook');
|
|
});
|
|
});
|