storybook/code/e2e-tests/addon-backgrounds.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

63 lines
2.2 KiB
TypeScript

import { expect, test } from '@playwright/test';
import process from 'process';
import { SbPage } from './util';
const storybookUrl = process.env.STORYBOOK_URL || 'http://localhost:8001';
const templateName = process.env.STORYBOOK_TEMPLATE_NAME || '';
test.describe('addon-backgrounds', () => {
test.beforeEach(async ({ page }) => {
await page.goto(storybookUrl);
await new SbPage(page, expect).waitUntilLoaded();
});
const backgroundToolbarSelector = '[title="Change the background of the preview"]';
const gridToolbarSelector = '[title="Apply a grid to the preview"]';
test('should have a dark background', async ({ page }) => {
const sbPage = new SbPage(page, expect);
await sbPage.navigateToStory('example/button', 'primary');
await sbPage.selectToolbar(backgroundToolbarSelector, '#list-item-dark');
await expect(sbPage.getCanvasBodyElement()).toHaveCSS('background-color', 'rgb(51, 51, 51)');
});
test('should apply a grid', async ({ page }) => {
const sbPage = new SbPage(page, expect);
await sbPage.navigateToStory('example/button', 'primary');
await sbPage.selectToolbar(gridToolbarSelector);
await expect(sbPage.getCanvasBodyElement()).toHaveCSS('background-image', /linear-gradient/);
});
test('button should appear for story pages', async ({ page }) => {
const sbPage = new SbPage(page, expect);
await sbPage.navigateToStory('example/button', 'primary');
await expect(sbPage.page.locator(backgroundToolbarSelector)).toBeVisible();
});
test.describe('docs pages', () => {
test('button should appear for attached docs pages', async ({ page }) => {
const sbPage = new SbPage(page, expect);
await sbPage.navigateToStory('example/button', 'docs');
await expect(sbPage.page.locator(backgroundToolbarSelector)).toBeVisible();
});
test('button should appear for unattached .mdx files', async ({ page }) => {
const sbPage = new SbPage(page, expect);
// We start on the introduction page by default.
await sbPage.page.waitForURL((url) =>
url.search.includes(`path=/docs/configure-your-project--docs`)
);
await expect(sbPage.page.locator(backgroundToolbarSelector)).toBeVisible();
});
});
});