blob: bc47bf1841b55f5b2c3aa7e2a4df36aec2466277 [file]
import { app, BrowserWindow, screen } from 'electron';
import { getCuE2eScenario } from './cu-e2e-scenarios.mjs';
import { createCuE2eFixture } from './cu-e2e-fixture.mjs';
const scenario = getCuE2eScenario(process.env.MAKA_CU_E2E_SCENARIO ?? 'l0-observe-only');
app.setActivationPolicy('accessory');
app.on('window-all-closed', () => {});
let fixture;
app.whenReady().then(async () => {
fixture = await createCuE2eFixture({ BrowserWindow, screen, scenario });
for (let index = 0; index < 4; index += 1) {
for (const windowId of fixture.windowIds()) {
const window = fixture.getWindow(windowId);
window.showInactive();
window.moveTop();
}
await new Promise((resolve) => setTimeout(resolve, 250));
}
process.stdout.write(`CU_FIXTURE_READY ${process.pid}\n`);
});
async function shutdown() {
fixture?.destroy();
app.exit(0);
}
process.on('SIGTERM', () => void shutdown());
process.on('SIGINT', () => void shutdown());