1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-18 17:16:00 +07:00

refactor: formatLicense to return undefined instead of null

This commit is contained in:
Griffithtp
2019-07-07 11:17:22 +01:00
parent cf1f47e86c
commit 13c7aa6d03
3 changed files with 6 additions and 6 deletions

View File

@@ -13,9 +13,9 @@ describe('formatLicense', (): void => {
});
test('should check license field for other value', (): void => {
expect(formatLicense(null)).toBeNull();
expect(formatLicense({})).toBeNull();
expect(formatLicense([])).toBeNull();
expect(formatLicense(null)).toBeUndefined();
expect(formatLicense({})).toBeUndefined();
expect(formatLicense([])).toBeUndefined();
});
});