You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/pages/peers/peers.component.spec.ts

26 lines
621 B
TypeScript

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