storybook/code/e2e-tests/navigation.spec.ts
Yann Braga 959f975f03 change testing strategies
Move to test-storybooks as the e2e tests for UI module involve side effects and spawning vitest which takes time. Doing that in a sandbox is convoluted because there are too many stories
2024-09-27 13:33:04 +02:00

24 lines
796 B
TypeScript

import { expect, test } from '@playwright/test';
import process from 'process';
import { SbPage } from './util';
const storybookUrl = process.env.STORYBOOK_URL || 'http://localhost:8001';
test.describe('navigating', () => {
test('a URL with a partial storyId will redirect to the first story', async ({ page }) => {
// this is purposefully not using the SbPage class, and the URL is a partial (it does not contain the full storyId)
await page.goto(`${storybookUrl}?path=/story/example-button`);
const sbPage = new SbPage(page, expect);
await sbPage.waitUntilLoaded();
await page.waitForFunction(() =>
window.document.location.href.match('/docs/example-button--docs')
);
await expect(sbPage.page.url()).toContain('/docs/example-button--docs');
});
});