maciejtreder/angular-universal-pwa

View on GitHub
application/src/app/lazy/lazy.component.spec.ts

Summary

Maintainability
B
5 hrs
Test Coverage
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { LazyComponent } from './lazy.component';
 
Similar blocks of code found in 2 locations. Consider refactoring.
describe('Lazy component -', () => {
let component: any;
let fixture: ComponentFixture<LazyComponent>;
 
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [LazyComponent]
});
 
fixture = TestBed.createComponent(LazyComponent);
fixture.detectChanges();
component = fixture.debugElement.nativeElement;
});
 
it('title is \'Lazy loading\'', () => {
expect(component.querySelector('h1').textContent).toBe('Lazy loading');
});
});