diff --git a/src/utils/common.test.ts b/src/utils/common.test.ts index acfbeb8..8cbfe3e 100644 --- a/src/utils/common.test.ts +++ b/src/utils/common.test.ts @@ -10,7 +10,9 @@ describe('CommonUtils', () => { it('return types which are not array without any change', () => { expect(stripArrayTypeIfPresent('string')).toBe('string'); expect(stripArrayTypeIfPresent('string []')).toBe('string []'); - expect(stripArrayTypeIfPresent(undefined as unknown as string)).toBeUndefined(); + expect( + stripArrayTypeIfPresent(undefined as unknown as string), + ).toBeUndefined(); }); }); });