added new components

This commit is contained in:
Pranav 2023-01-07 17:04:55 +00:00
parent 481ac18192
commit 902e04c7e6
12 changed files with 2218 additions and 0 deletions

View file

@ -0,0 +1,25 @@
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();
});
});