Files
buzz/desktop/tests/e2e/boot-splash.spec.ts

58 lines
2.2 KiB
TypeScript

import { expect, test } from "@playwright/test";
import { installMockBridge } from "../helpers/bridge";
// Cold-boot splash hold: on a real boot the workspace resolves in well under
// 100ms — before the hidden Tauri window ever puts a frame on screen — so the
// loading gate keeps the flapping bee up as an overlay above the already
// mounted app for a minimum visible duration, then fades out. E2E runs skip
// the hold by default (it would slow every spec's boot and block pointer
// actionability); this spec opts back in via __BUZZ_E2E__.bootSplashHoldMs.
test("boot splash overlay holds with a flapping bee, then dismisses", async ({
page,
}) => {
await installMockBridge(page);
// Registered after installMockBridge so it runs after the bridge's init
// script and can extend the config it assigns.
await page.addInitScript(() => {
const testWindow = window as Window & {
__BUZZ_E2E__?: { bootSplashHoldMs?: number };
};
testWindow.__BUZZ_E2E__ = {
...(testWindow.__BUZZ_E2E__ ?? {}),
bootSplashHoldMs: 1_500,
};
});
await page.goto("/");
const overlay = page.getByTestId("boot-splash-overlay");
await expect(overlay).toBeVisible();
// The bee is actually animating while the overlay holds — pure CSS, no SMIL.
const wingState = await overlay.locator(".bee-wing-left").evaluate((wing) => {
const animation = wing.getAnimations()[0];
return {
name: getComputedStyle(wing).animationName,
state: animation?.playState,
};
});
expect(wingState).toEqual({ name: "bee-wing-left-flap", state: "running" });
// The app mounts and loads beneath the overlay — boot is not delayed.
await expect(page.getByTestId("home-inbox-list")).toBeVisible();
// After the hold elapses the overlay fades out and unmounts.
await expect(overlay).toHaveCount(0, { timeout: 6_000 });
await expect(page.getByTestId("home-inbox-list")).toBeVisible();
});
test("boot splash overlay is skipped when the hold is zero (e2e default)", async ({
page,
}) => {
await installMockBridge(page);
await page.goto("/");
await expect(page.getByTestId("home-inbox-list")).toBeVisible();
await expect(page.getByTestId("boot-splash-overlay")).toHaveCount(0);
});