mirror of
https://github.com/block/buzz.git
synced 2026-08-18 06:50:31 +02:00
Signed-off-by: Fizz <8a675edd33677aa0389f6650d467b2041fb0df4ca820eacb009babb95e3715d4@sprout-oss.stage.blox.sqprod.co> Signed-off-by: npub13fn4ahfnvaa2qwylvegdgeajqs0mph6v4qsw4jcqnw4mjh3hzh2quuucm5 <8a675edd33677aa0389f6650d467b2041fb0df4ca820eacb009babb95e3715d4@sprout-oss.stage.blox.sqprod.co> Signed-off-by: klopez4212 <klopez4212@gmail.com> Co-authored-by: npub13fn4ahfnvaa2qwylvegdgeajqs0mph6v4qsw4jcqnw4mjh3hzh2quuucm5 <8a675edd33677aa0389f6650d467b2041fb0df4ca820eacb009babb95e3715d4@sprout-oss.stage.blox.sqprod.co> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
58 lines
2.2 KiB
TypeScript
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);
|
|
});
|