2
0
mirror of https://github.com/Ride-The-Lightning/RTL synced 2024-11-03 23:15:24 +00:00
RTL/src/app/clightning/transactions/query-routes/query-routes.component.spec.ts
Shahana Farooqui f22a20fe48 Initial CLightning UX
Initial CLightning UX
2020-01-03 15:04:00 -05:00

26 lines
676 B
TypeScript

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