storage - do not init at random (fix tests on windows)

This commit is contained in:
Benjamin Pasero 2021-02-15 12:18:19 +01:00
parent 02613ef2b4
commit 50bb1cf1a4

View file

@ -48,11 +48,6 @@ export class StorageMainService implements IStorageMainService {
const globalStorage = new GlobalStorageMain(this.logService, this.environmentService);
// Trigger init of global storage directly from here
// so that we can be ready for access when the window
// needs it (prevents waterfall of initialization)
globalStorage.initialize();
return globalStorage;
}