mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
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
83 lines
2.6 KiB
TypeScript
83 lines
2.6 KiB
TypeScript
/* eslint-disable playwright/expect-expect */
|
|
|
|
/* eslint-disable no-underscore-dangle */
|
|
import { promises as fs } from 'node:fs';
|
|
import { join } from 'node:path';
|
|
|
|
import { expect, test } from '@playwright/test';
|
|
|
|
import { SbPage } from './util';
|
|
|
|
declare global {
|
|
interface Window {
|
|
__STORYBOOK_BEFORE_ALL_CALLS__: number;
|
|
__STORYBOOK_BEFORE_ALL_CLEANUP_CALLS__: number;
|
|
}
|
|
}
|
|
|
|
const storybookUrl = process.env.STORYBOOK_URL || 'http://localhost:8001';
|
|
const templateName = process.env.STORYBOOK_TEMPLATE_NAME || '';
|
|
const sandboxDir =
|
|
process.env.STORYBOOK_SANDBOX_DIR ||
|
|
join(__dirname, '..', '..', 'sandbox', 'react-vite-default-ts');
|
|
const previewFilePath = join(sandboxDir, '.storybook', 'preview.ts');
|
|
const isStorybookDev = process.env.STORYBOOK_TYPE === 'dev';
|
|
|
|
test.describe('Storybook hooks', () => {
|
|
test.skip(); // TODO remove
|
|
test.skip(
|
|
!templateName?.includes('react-vite/default-ts'),
|
|
'Only run this test for react-vite sandbox'
|
|
);
|
|
test.beforeEach(async ({ page }) => {
|
|
await page.goto(storybookUrl);
|
|
await new SbPage(page, expect).waitUntilLoaded();
|
|
});
|
|
|
|
test('should call beforeAll upon loading Storybook', async ({ page }, { titlePath }) => {
|
|
const sbPage = new SbPage(page, expect);
|
|
|
|
await sbPage.navigateToStory('example/button', 'primary');
|
|
|
|
await page.waitForFunction(
|
|
() =>
|
|
window.__STORYBOOK_BEFORE_ALL_CALLS__ === 1 &&
|
|
window.__STORYBOOK_BEFORE_ALL_CLEANUP_CALLS__ === 0,
|
|
undefined,
|
|
{ timeout: 2000 }
|
|
);
|
|
});
|
|
|
|
test('should call beforeAll and cleanup on HMR', async ({ page }, { titlePath }) => {
|
|
test.skip(!isStorybookDev, 'HMR is only applicable in dev mode');
|
|
const sbPage = new SbPage(page, expect);
|
|
|
|
await sbPage.navigateToStory('example/button', 'primary');
|
|
|
|
const originalContent = await fs.readFile(previewFilePath, 'utf8');
|
|
const newContent = `${originalContent}\nconsole.log('Written from E2E test: ${titlePath}');`;
|
|
|
|
await page.waitForFunction(
|
|
() =>
|
|
window.__STORYBOOK_BEFORE_ALL_CALLS__ === 1 &&
|
|
window.__STORYBOOK_BEFORE_ALL_CLEANUP_CALLS__ === 0,
|
|
undefined,
|
|
{ timeout: 2000 }
|
|
);
|
|
|
|
// Save the file to trigger HMR, then wait for it
|
|
await fs.writeFile(previewFilePath, newContent);
|
|
|
|
await page.waitForFunction(
|
|
() =>
|
|
window.__STORYBOOK_BEFORE_ALL_CALLS__ === 2 &&
|
|
window.__STORYBOOK_BEFORE_ALL_CLEANUP_CALLS__ === 1,
|
|
undefined,
|
|
{ timeout: 2000 }
|
|
);
|
|
|
|
// Restore the original content of the preview file
|
|
await fs.writeFile(previewFilePath, originalContent);
|
|
});
|
|
});
|