import React from 'react'; import { test, expect } from '@playwright/experimental-ct-react'; import TestVariant from '@digigov/ui/utils/TestVariant' import { Default } from '@digigov/ui/typography/HeadingCaption/__stories__/Default'; import { NestedToTitle } from '@digigov/ui/typography/HeadingCaption/__stories__/NestedToTitle'; test('renders the All HeadingCaption variants', async ({ mount, page }) => { await mount(
) await page.evaluate(() => document.fonts.ready); // Move the mouse to the top-left corner to avoid random hover issues await page.mouse.move(0, 0); const screenshot = await page.screenshot({ fullPage: true, animations: 'disabled' }); expect(screenshot).toMatchSnapshot(); });