MCPcopy Create free account
hub / github.com/DustinBrett/daedalOS / windowIsTransparent

Function windowIsTransparent

e2e/functions.ts:584–585  ·  view source on GitHub ↗
({ page }: TestProps)

Source from the content-addressed store, hash-verified

582 expect(page.locator(WINDOW_SELECTOR)).toBeHidden();
583
584export const windowIsTransparent = async ({ page }: TestProps): Promise<void> =>
585 expect(page.locator(WINDOW_SELECTOR)).toHaveCSS("opacity", "0");
586
587export const windowIsOpaque = async ({ page }: TestProps): Promise<void> =>
588 expect(page.locator(WINDOW_SELECTOR)).toHaveCSS("opacity", "1");

Callers 2

Taskbar.spec.tsFile · 0.90
Window.spec.tsFile · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected