mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 14:01:16 +08:00
19 lines
455 B
TypeScript
19 lines
455 B
TypeScript
import { visit } from '../helper';
|
|
|
|
describe('Basic Flow', () => {
|
|
before(() => {
|
|
visit();
|
|
});
|
|
|
|
it('should load welcome flow', () => {
|
|
// assert url changes
|
|
cy.url().should('include', 'path=/story/welcome--to-storybook');
|
|
|
|
// check for selected element
|
|
cy.get('#welcome--to-storybook').should('have.class', 'selected');
|
|
|
|
// check for content
|
|
cy.getStoryElement().should('contain.text', 'Welcome to storybook');
|
|
});
|
|
});
|