This commit is contained in:
jacob
2024-02-24 12:42:46 -06:00
parent 6231d9078c
commit cd2a670ce9

View File

@@ -15,12 +15,6 @@ describe('CoreContainer Tests', () => {
expect(singleton).toEqual({ value: 'singletonValue' });
});
it('Adding disposer for existing key', () => {
// const disposerFn = vi.fn();
// coreContainer.addSingleton('existingKey', { value: 'existingValue' });
// coreContainer.addDisposer('existingKey', disposerFn);
// expect(disposerFn).not.toHaveBeenCalled();
});
it('Checking if container is ready', () => {
expect(coreContainer.isReady()).toBe(false);