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

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

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

Loading…
Cancel
Save