mirror of
https://github.com/Ride-The-Lightning/RTL
synced 2024-11-03 23:15:24 +00:00
f22a20fe48
Initial CLightning UX
26 lines
676 B
TypeScript
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();
|
|
});
|
|
});
|