angular-develop-client/src/app/status-list/status-list.component.spec.ts
2019-01-01 22:56:35 +01:00

26 lines
657 B
TypeScript

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