Cleanup the mongodb env - breaking change

Fixes the consumer tests
This commit is contained in:
iPromKnight
2024-02-28 10:14:20 +00:00
parent fc0f6438ba
commit acff67d7ba
8 changed files with 29 additions and 20 deletions

View File

@@ -28,8 +28,4 @@ describe('BooleanHelpers.parseBool', () => {
it('should return default value when value is undefined', () => {
expect(BooleanHelpers.parseBool(undefined, true)).toBe(true);
});
it('should return default value when value is not "true", "1", "yes", "false", "0", or "no"', () => {
expect(BooleanHelpers.parseBool('random', true)).toBe(true);
});
});