added new components
This commit is contained in:
parent
481ac18192
commit
902e04c7e6
12 changed files with 2218 additions and 0 deletions
|
|
@ -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();
|
||||
});
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue