mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-19 05:02:40 +08:00
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
const baseUrl = 'http://localhost:8001';
|
|
|
|
type StorybookApps = 'official-storybook';
|
|
|
|
export const visitApp = (app: StorybookApps) => {
|
|
return cy.visit(`${baseUrl}/${app}/`);
|
|
};
|