mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
12 lines
288 B
TypeScript
12 lines
288 B
TypeScript
describe('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');
|
|
});
|
|
});
|