mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-22 05:02:18 +08:00
14 lines
304 B
TypeScript
14 lines
304 B
TypeScript
|
import { visitApp } from '../helper';
|
||
|
|
||
|
describe('Actions', () => {
|
||
|
beforeEach(() => {
|
||
|
visitApp('official-storybook');
|
||
|
});
|
||
|
|
||
|
it('do something', () => {
|
||
|
cy.contains('Invalid contrast').click();
|
||
|
|
||
|
cy.url().should('include', 'path=/story/addons-a11y-basebutton--invalid-contrast');
|
||
|
});
|
||
|
});
|