sc-portal/app/src/app/machines/machine-networks/machine-networks.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
690 B
TypeScript

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