sc-portal/app/src/app/machines/machine-snapshots/machine-snapshots.component.spec.ts
Dragos 069afd02b1 TRIX-26 affinity rule editor
also renamed all occurrences of "instance" to "machine" because there were many inconsistencies
2021-06-01 10:55:41 +03:00

26 lines
697 B
TypeScript

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