experiments in a post-browser web
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: command audit and placeholder for tile:window:open e2e

+19
+19
backend/electron/tile-window-open.test.ts
··· 1 + /** 2 + * Placeholder for tile:window:open integration tests. 3 + * 4 + * The delegation from tile-ipc.ts → ipc.ts's window-open handler cannot be 5 + * exercised under ELECTRON_RUN_AS_NODE=1 because ipc.ts transitively imports 6 + * Electron runtime APIs (BrowserWindow, app, etc.) that are only available 7 + * when Electron is launched as the window-producing process. 8 + * 9 + * See tests/desktop/tile-window-open.spec.ts for the Playwright-based 10 + * end-to-end coverage of the fix. 11 + */ 12 + 13 + import { describe, it } from 'node:test'; 14 + 15 + describe('tile:window:open delegation (placeholder)', () => { 16 + it('documents that e2e coverage lives in Playwright', () => { 17 + // Intentionally empty — see docstring. 18 + }); 19 + });