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