userblock.component.spec.ts 625 B

1234567891011121314151617181920
  1. /* tslint:disable:no-unused-variable */
  2. import { TestBed, async, inject } from '@angular/core/testing';
  3. import { UserblockComponent } from './userblock.component';
  4. import { UserblockService } from './userblock.service';
  5. describe('Component: Userblock', () => {
  6. beforeEach(() => {
  7. TestBed.configureTestingModule({
  8. providers: [UserblockService]
  9. }).compileComponents();
  10. });
  11. it('should create an instance', async(inject([UserblockService], (userBlockService) => {
  12. let component = new UserblockComponent(userBlockService);
  13. expect(component).toBeTruthy();
  14. })));
  15. });