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/shared/components/ln-services/loop/loop-quote/loop-quote.component.spec.ts

36 lines
943 B
TypeScript

import { waitForAsync, ComponentFixture, TestBed } from '@angular/core/testing';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { SharedModule } from '../../../../shared.module';
import { LoopQuoteComponent } from './loop-quote.component';
describe('LoopQuoteComponent', () => {
let component: LoopQuoteComponent;
let fixture: ComponentFixture<LoopQuoteComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [LoopQuoteComponent],
imports: [
BrowserAnimationsModule,
SharedModule
]
}).
compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(LoopQuoteComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
afterEach(() => {
TestBed.resetTestingModule();
});
});