sc-portal/app/src/app/machines/machine-tag-editor/machine-tag-editor.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
698 B
TypeScript

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