header-publicidad.component.spec.ts
699 Bytes
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { HeaderPublicidadComponent } from './header-publicidad.component';
describe('HeaderPublicidadComponent', () => {
let component: HeaderPublicidadComponent;
let fixture: ComponentFixture<HeaderPublicidadComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ HeaderPublicidadComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(HeaderPublicidadComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});