otp-component-wu
Version:
How to build libraries with Angular (2, 4, 5...)
16 lines (12 loc) • 420 B
text/typescript
import { TestBed, inject } from '@angular/core/testing';
import { OtpServicesService } from './otp-services.service';
describe('OtpServicesService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [OtpServicesService]
});
});
it('should be created', inject([OtpServicesService], (service: OtpServicesService) => {
expect(service).toBeTruthy();
}));
});