Add e2e test for addon-links

This commit is contained in:
Michael Shilman 2021-10-21 17:11:09 +08:00
parent f9c4d4e78f
commit 5a4ab4b0a6

View 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');
});
});