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