Skip to content

[FEATURE] add json response to list action, now you can automate your tests #134

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

Kanti
Copy link

@Kanti Kanti commented Jun 16, 2025

You could now automate screenshot tests with e.g. playwright:

test-fluid_styleguide.spec.ts

import { expect, test } from '@playwright/test';

const response = await fetch(process.env.TEST_BASE_URL + '/fluid-styleguide/list', { headers: { Accept: 'application/json' } });
const stories = await response.json();

for (const story of stories) {
  console.log(`Story: ${story.identifier}`);
  for (const fixtureName in story.fixtures) {
    const variant = story.fixtures[fixtureName];
    test.describe(story.identifier, () => {
      test(fixtureName, {}, async ({ page }) => {
        const disallowedConsoleLogs: string[] = [];
        page.on('console', (message) => {
          if (message.text().startsWith('<Suspense>')) return; // ignore <Suspense> warning
          if (message.text().startsWith('[vite]')) return;
          disallowedConsoleLogs.push(`${message.type()}➡️ ${message.text()}`);
        });

        await page.goto(`/fluid-styleguide/component?component=${story.identifier}&fixture=${fixtureName}`);

        await expect(page.locator('body')).toMatchAriaSnapshot();
        await expect(page.locator('body')).toHaveScreenshot();

        expect(disallowedConsoleLogs).toEqual([]);
      });
    });
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant