Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. describe('TimeSlotService', () => {
  2. beforeEach(() => TestBed.configureTestingModule({
  3. providers: [
  4. { provide: ApiService, useValue: MockApiService }
  5. ],
  6. imports: [ HttpClientTestingModule ]
  7. }));
  8.  
  9. it('should be created', () => {
  10. const service: TimeSlotService = TestBed.get(TimeSlotService);
  11. expect(service).toBeTruthy();
  12. });
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement