userblock.service.spec.ts 434 B

12345678910111213141516
  1. /* tslint:disable:no-unused-variable */
  2. import { TestBed, async, inject } from '@angular/core/testing';
  3. import { UserblockService } from './userblock.service';
  4. describe('Service: Userblock', () => {
  5. beforeEach(() => {
  6. TestBed.configureTestingModule({
  7. providers: [UserblockService]
  8. });
  9. });
  10. it('should ...', inject([UserblockService], (service: UserblockService) => {
  11. expect(service).toBeTruthy();
  12. }));
  13. });