From 37477d665136670f52ac6fbe3dbe908f4decf2f7 Mon Sep 17 00:00:00 2001 From: aphilas <31406314+aphilas@users.noreply.github.com> Date: Sat, 8 Apr 2023 11:39:02 +0300 Subject: [PATCH] Add test Common/Types/Typeof --- Common/Tests/Types/Typeof.test.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Common/Tests/Types/Typeof.test.ts diff --git a/Common/Tests/Types/Typeof.test.ts b/Common/Tests/Types/Typeof.test.ts new file mode 100644 index 0000000000..7ef61068e0 --- /dev/null +++ b/Common/Tests/Types/Typeof.test.ts @@ -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'); + }); +});