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