sc-portal/app/src/app/machines/machine-history/machine-history.component.s...

26 lines
683 B
TypeScript
Raw Normal View History

2021-04-07 14:26:28 +03:00
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MachineHistoryComponent } from './machine-history.component';
2021-04-07 14:26:28 +03:00
describe('MachineHistoryComponent', () => {
let component: MachineHistoryComponent;
let fixture: ComponentFixture<MachineHistoryComponent>;
2021-04-07 14:26:28 +03:00
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ MachineHistoryComponent ]
2021-04-07 14:26:28 +03:00
})
.compileComponents();
});
beforeEach(() => {
fixture = TestBed.createComponent(MachineHistoryComponent);
2021-04-07 14:26:28 +03:00
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});