-
Notifications
You must be signed in to change notification settings - Fork 167
Open
Labels
status: needs triageIssues which needs to be reproduced to be verified report.Issues which needs to be reproduced to be verified report.type: fixIssues describing a broken feature.Issues describing a broken feature.
Description
Description
This test fails:
test('reset should clear container', () => {
assert.ok(!typedi.Container.has('foobar'), "Should be no foobar in container.");
typedi.Container.set('foobar', 'some value');
assert.ok(typedi.Container.has('foobar'), "Foobar should be in container.");
typedi.Container.reset();
assert.ok(!typedi.Container.has('foobar'), "Foobar should be cleared from container.");
});
Metadata
Metadata
Assignees
Labels
status: needs triageIssues which needs to be reproduced to be verified report.Issues which needs to be reproduced to be verified report.type: fixIssues describing a broken feature.Issues describing a broken feature.