mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:01:05 +08:00
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import { visit } from '../helper';
|
|
|
|
describe('Navigation', () => {
|
|
before(() => {
|
|
visit('official-storybook');
|
|
});
|
|
|
|
it('should search navigation item', () => {
|
|
cy.get('#storybook-explorer-searchfield').click({ force: true });
|
|
cy.get('#storybook-explorer-searchfield').clear();
|
|
cy.get('#storybook-explorer-searchfield').type('syntax');
|
|
|
|
cy.get('#storybook-explorer-menu button')
|
|
.should('contain', 'SyntaxHighlighter')
|
|
.and('not.contain', 'a11y');
|
|
});
|
|
|
|
it('should display no results after searching a non-existing navigation item', () => {
|
|
cy.get('#storybook-explorer-searchfield').click({ force: true });
|
|
cy.get('#storybook-explorer-searchfield').clear();
|
|
cy.get('#storybook-explorer-searchfield').type('zzzzzzzzzz');
|
|
|
|
cy.get('#storybook-explorer-menu button').should('be.hidden');
|
|
});
|
|
});
|
|
|
|
describe('Routing', () => {
|
|
it('should navigate to sibling story sibling', () => {
|
|
visit('official-storybook/?path=/story/basics-actionbar--single-item');
|
|
|
|
cy.get('#basics-actionbar--many-items').click({ force: true });
|
|
cy.url().should('include', 'path=/story/basics-actionbar--many-items');
|
|
});
|
|
|
|
it('should directly visit a certain story and render correctly', () => {
|
|
visit('official-storybook/?path=/story/basics-actionbar--single-item');
|
|
|
|
cy.getStoryElement().should('contain.text', 'Clear');
|
|
});
|
|
});
|