diff --git a/lib/modules/services/some.service.spec.ts b/lib/modules/services/some.service.spec.ts new file mode 100644 index 0000000..da15590 --- /dev/null +++ b/lib/modules/services/some.service.spec.ts @@ -0,0 +1,21 @@ +/** + * some.service + */ +import { expect } from 'chai'; +import { Injector } from 'super-injector'; + +import { SomeService } from './some.service'; + +describe('Service: SomeService', () => { + + let someService: SomeService; + + beforeEach(() => { + someService = Injector.resolve(SomeService); + }); + + it('should default message to hello', () => { + + expect(someService.message).to.equal('hello'); + }); +});