Skip to content

Commit

Permalink
test(typedservice): add test skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
freshgum-bubbles committed Sep 15, 2023
1 parent 936ca71 commit 3c92820
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test/features/contrib/typed-service.spec.ts
Original file line number Diff line number Diff line change
@@ -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');
});
});

0 comments on commit 3c92820

Please sign in to comment.