Run pre-commit
This commit is contained in:
@@ -28,4 +28,4 @@ describe('BooleanHelpers.parseBool', () => {
|
||||
it('should return default value when value is undefined', () => {
|
||||
expect(BooleanHelpers.parseBool(undefined, true)).toBe(true);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -30,4 +30,4 @@ describe('ExtensionHelpers', () => {
|
||||
expect(ExtensionHelpers.isDisk('file.txt')).toBe(false);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
@@ -8,7 +8,7 @@ describe('PromiseHelpers', () => {
|
||||
afterAll(() => {
|
||||
jest.useRealTimers();
|
||||
});
|
||||
|
||||
|
||||
describe('sequence', () => {
|
||||
it('should resolve promises in sequence', async () => {
|
||||
const promises = [() => Promise.resolve(1), () => Promise.resolve(2), () => Promise.resolve(3)];
|
||||
@@ -52,4 +52,4 @@ describe('PromiseHelpers', () => {
|
||||
expect(result).toBe(3);
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user