M44: harden release integrity and assurance
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { expect, test } from "@playwright/test";
|
||||
|
||||
test("public entry and engineering highlights retain their visual hierarchy", async ({ page }) => {
|
||||
await page.goto("/login");
|
||||
await expect(page.locator(".login-access")).toHaveScreenshot("login-access.png", {
|
||||
animations: "disabled",
|
||||
maxDiffPixelRatio: 0.02,
|
||||
});
|
||||
|
||||
await page.goto("/highlights");
|
||||
await expect(page.locator("main")).toHaveScreenshot("highlights-main.png", {
|
||||
animations: "disabled",
|
||||
maxDiffPixelRatio: 0.02,
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user