diff --git a/src/common/sync-box/sync-box.test.ts b/src/common/sync-box/sync-box.test.ts index db9b26a06b..458f4b6f3c 100644 --- a/src/common/sync-box/sync-box.test.ts +++ b/src/common/sync-box/sync-box.test.ts @@ -20,12 +20,14 @@ describe("sync-box", () => { applicationBuilder.dis.rendererDi.register(someInjectable); }); - describe("given application is started, when value is set in main", () => { + // TODO: Separate starting for main application and starting of window in application builder + xdescribe("given application is started, when value is set in main", () => { let valueInMain: string; let syncBoxInMain: SyncBox; beforeEach(async () => { syncBoxInMain = applicationBuilder.dis.mainDi.inject(someInjectable); + // await applicationBuilder.start(); observe(syncBoxInMain.value, ({ newValue }) => { @@ -46,7 +48,7 @@ describe("sync-box", () => { let syncBoxInRenderer: SyncBox; beforeEach(() => { - // applicationBuilder. + // applicationBuilder.renderWindow() syncBoxInRenderer = applicationBuilder.dis.rendererDi.inject(someInjectable);