sc-portal/app/src/app/machines/machine-tag-editor/machine-tag-editor.componen...

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();
});
});