mirror of
https://github.com/home-assistant/frontend.git
synced 2026-08-13 00:22:28 +01:00
* Shared build and runner for all build,dev,test flows * Harden managed process lifecycle * Make build workflows deterministic * Test build management contracts * Queue shared generated output work * Isolate generated inputs for dev servers * Preserve dev server child failures * Make generated lock test deterministic * Keep test navigator configurable * Block concurrent frontend workflows * Simplify workflow lock ownership * Focus workflow locking on managed commands * Trim workflow lock unit tests * Consolidate dev server lifecycle handlers
13 lines
261 B
TypeScript
13 lines
261 B
TypeScript
global.window = (global.window ?? {}) as any;
|
|
if (!global.navigator) {
|
|
Object.defineProperty(global, "navigator", {
|
|
value: {},
|
|
configurable: true,
|
|
writable: true,
|
|
});
|
|
}
|
|
|
|
global.__DEMO__ = false;
|
|
global.__DEV__ = false;
|
|
global.__HASS_URL__ = "";
|