web-remote/src/app/components/stage-view/stage-view.component.spec.ts

26 lines
650 B
TypeScript

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