Newer
Older
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { FavoritesContainerComponent } from './favorites-container.component';
describe('FavoritesContainerComponent', () => {
let component: FavoritesContainerComponent;
let fixture: ComponentFixture<FavoritesContainerComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ FavoritesContainerComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(FavoritesContainerComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});