travopti/frontend/src/app/containers/team/team.component.spec.ts
Patrick Gebhardt 112c37f7b5 Add team site
2020-06-20 00:16:42 +02:00

26 lines
610 B
TypeScript

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