From 3c9282038ad337d6a05562791c26b8959e3578db Mon Sep 17 00:00:00 2001 From: freshgum Date: Sat, 9 Sep 2023 01:18:25 +0100 Subject: [PATCH] test(typedservice): add test skeleton --- test/features/contrib/typed-service.spec.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/features/contrib/typed-service.spec.ts b/test/features/contrib/typed-service.spec.ts index add7507e..f831fd63 100644 --- a/test/features/contrib/typed-service.spec.ts +++ b/test/features/contrib/typed-service.spec.ts @@ -1,3 +1,7 @@ import { TypedService } from '../../../src/contrib/typed-service.decorator'; -describe('TypedService', () => {}); +describe('TypedService', () => { + it('is a function', () => { + expect(typeof TypedService).toStrictEqual('function'); + }); +});