12345678910111213141516 |
- /* tslint:disable:no-unused-variable */
- import { TestBed, async, inject } from '@angular/core/testing';
- import { UserblockService } from './userblock.service';
- describe('Service: Userblock', () => {
- beforeEach(() => {
- TestBed.configureTestingModule({
- providers: [UserblockService]
- });
- });
- it('should ...', inject([UserblockService], (service: UserblockService) => {
- expect(service).toBeTruthy();
- }));
- });
|