Add test Common/Types/Typeof

This commit is contained in:
aphilas 2023-04-08 11:39:02 +03:00
parent e35d28c5a5
commit 37477d6651

View File

@ -0,0 +1,19 @@
import Typeof from '../../Types/Typeof';
describe('Typeof', () => {
test('String should be string', () => {
expect(Typeof.String).toBe('string');
});
test('Boolean should be boolean', () => {
expect(Typeof.Boolean).toBe('boolean');
});
test('Number should be number', () => {
expect(Typeof.Number).toBe('number');
});
test('Object should be object', () => {
expect(Typeof.Object).toBe('object');
});
});