mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
Add e2e test for addon-links
This commit is contained in:
parent
f9c4d4e78f
commit
5a4ab4b0a6
15
cypress/integration/addon-links.spec.ts
Normal file
15
cypress/integration/addon-links.spec.ts
Normal file
@ -0,0 +1,15 @@
|
||||
import { visit } from '../helper';
|
||||
|
||||
describe('addon-links', () => {
|
||||
before(() => {
|
||||
visit('official-storybook?path=/story/addons-links-button--first');
|
||||
});
|
||||
|
||||
it('should navigate on link', () => {
|
||||
cy.getStoryElement().find('button').first().should('contain.text', 'Go to "Second"').click();
|
||||
cy.url().should('include', 'path=/story/addons-links-button--second');
|
||||
|
||||
cy.getStoryElement().find('button').first().should('contain.text', 'Go to "First"').click();
|
||||
cy.url().should('include', 'path=/story/addons-links-button--first');
|
||||
});
|
||||
});
|
Loading…
x
Reference in New Issue
Block a user