argos/dmp-admin/src/app/main-window/main-window.component.spec.ts

26 lines
657 B
TypeScript

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