This repository has been archived on 2024-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
sc-portal/app/src/app/instances/instance-networks/instance-networks.component.spec.ts

26 lines
697 B
TypeScript
Raw Normal View History

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