Skip to content

Commit 2970210

Browse files
committed
fix: issue with wrong path for foundation tests
1 parent 3e23022 commit 2970210

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/foundations/test/colors.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { expect, test } from '@playwright/test';
22

33
test.describe('Colors', () => {
44
test(`should match screenshot`, async ({ page }) => {
5-
await page.goto(`src/colors.html`);
5+
await page.goto(`dev/colors.html`);
66
await expect(page).toHaveScreenshot({ fullPage: true });
77
});
88
});

packages/foundations/test/fonts.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { expect, test } from '@playwright/test';
22

33
test.describe('Fonts', () => {
44
test(`should match screenshot`, async ({ page }) => {
5-
await page.goto(`src/fonts.html`);
5+
await page.goto(`dev/fonts.html`);
66
await expect(page).toHaveScreenshot({ fullPage: true });
77
});
88
});

packages/foundations/test/icons.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { expect, test } from '@playwright/test';
22

33
test.describe('Icons', () => {
44
test(`should match screenshot`, async ({ page }) => {
5-
await page.goto(`src/icons.html`);
5+
await page.goto(`dev/icons.html`);
66
await page.waitForTimeout(1000);
77
await expect(page).toHaveScreenshot({ fullPage: true });
88
});

0 commit comments

Comments
 (0)