Skip to content

Commit

Permalink
mor
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbertCarreras committed Jan 6, 2025
1 parent afa7e86 commit adae7c1
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 0 deletions.
7 changes: 7 additions & 0 deletions playwright/visual-test/IconCompact-list-dark.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { expect, test } from '@playwright/test';

test('IconCompact list dark mode visual regression check', async ({ page }) => {
await page.goto('/visual-test/IconCompact-list-dark');
const locator = page.locator('[data-test-id="visual-test"]');
await expect(locator).toHaveScreenshot('IconCompact-list-dark.png');
});
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions playwright/visual-test/IconCompact-list-vr.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { expect, test } from '@playwright/test';

test('IconCompact list visual regression check', async ({ page }) => {
await page.goto('/visual-test/IconCompact-list-vr');
const locator = page.locator('[data-test-id="visual-test"]');
await expect(locator).toHaveScreenshot('IconCompact-list-vr.png');
});
7 changes: 7 additions & 0 deletions playwright/visual-test/IconCompact-list.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { expect, test } from '@playwright/test';

test('IconCompact list visual regression check', async ({ page }) => {
await page.goto('/visual-test/IconCompact-list');
const locator = page.locator('[data-test-id="visual-test"]');
await expect(locator).toHaveScreenshot('IconCompact-list.png');
});
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit adae7c1

Please sign in to comment.