sc-portal/app/src/app/pages/machines/machines.component.spec.ts

26 lines
648 B
TypeScript

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