Skip to content
Snippets Groups Projects
favorites-container.component.spec.ts 713 B
Newer Older
pnogal's avatar
pnogal committed
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();
  });
});