OneQlik/src/app/report/report component/current-position/current-position.component.spec.ts

26 lines
732 B
TypeScript
Raw Normal View History

2023-01-07 17:04:55 +00:00
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { CurrentPositionReportComponent } from './current-position.component';
describe('CurrentPositionReportComponent', () => {
let component: CurrentPositionReportComponent;
let fixture: ComponentFixture<CurrentPositionReportComponent>;
beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ CurrentPositionReportComponent ]
})
.compileComponents();
}));
beforeEach(() => {
fixture = TestBed.createComponent(CurrentPositionReportComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should be created', () => {
expect(component).toBeTruthy();
});
});