mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:21:23 +08:00
12 lines
287 B
JavaScript
12 lines
287 B
JavaScript
context('Actions', () => {
|
|
beforeEach(() => {
|
|
cy.visit('http://localhost:8001/official-storybook/');
|
|
});
|
|
|
|
it('do something', () => {
|
|
cy.contains('Invalid contrast').click();
|
|
|
|
cy.url().should('include', 'path=/story/addons-a11y-basebutton--invalid-contrast');
|
|
});
|
|
});
|