testing specs fixed

pull/386/head
saubyk 4 years ago
parent 3364e44dd5
commit 9e3e6d4a5d
No known key found for this signature in database
GPG Key ID: 00C9E2BC2E45666F

@ -1,20 +1,20 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { NetworkInfoComponent } from './network-info.component';
import { CLNetworkInfoComponent } from './network-info.component';
describe('NetworkInfoComponent', () => {
let component: NetworkInfoComponent;
let fixture: ComponentFixture<NetworkInfoComponent>;
describe('CLNetworkInfoComponent', () => {
let component: CLNetworkInfoComponent;
let fixture: ComponentFixture<CLNetworkInfoComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ NetworkInfoComponent ]
declarations: [ CLNetworkInfoComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(NetworkInfoComponent);
fixture = TestBed.createComponent(CLNetworkInfoComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

@ -1,20 +1,20 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CLChannelsTablesComponent } from './channels-tables.component';
import { ECLChannelsTablesComponent } from './channels-tables.component';
describe('CLChannelsTablesComponent', () => {
let component: CLChannelsTablesComponent;
let fixture: ComponentFixture<CLChannelsTablesComponent>;
describe('ECLChannelsTablesComponent', () => {
let component: ECLChannelsTablesComponent;
let fixture: ComponentFixture<ECLChannelsTablesComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CLChannelsTablesComponent ]
declarations: [ ECLChannelsTablesComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CLChannelsTablesComponent);
fixture = TestBed.createComponent(ECLChannelsTablesComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

@ -1,20 +1,20 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CLPeersComponent } from './peers.component';
import { ECLPeersComponent } from './peers.component';
describe('CLPeersComponent', () => {
let component: CLPeersComponent;
let fixture: ComponentFixture<CLPeersComponent>;
describe('ECLPeersComponent', () => {
let component: ECLPeersComponent;
let fixture: ComponentFixture<ECLPeersComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CLPeersComponent ]
declarations: [ ECLPeersComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CLPeersComponent);
fixture = TestBed.createComponent(ECLPeersComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

Loading…
Cancel
Save