Skip to content
This repository has been archived by the owner on Jul 26, 2023. It is now read-only.

Commit

Permalink
resolving "Codacy/PR Quality Review" issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
RahulSherikar committed Jan 12, 2020
1 parent 30a219b commit faf175d
Showing 1 changed file with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { async, ComponentFixture, TestBed } from '@angular/core/testing'

import { SoldierTimelineComponent } from './soldier-timeline.component';
import { SoldierTimelineComponent } from './soldier-timeline.component'

describe('SoldierTimelineComponent', () => {
let component: SoldierTimelineComponent;
let fixture: ComponentFixture<SoldierTimelineComponent>;
let component: SoldierTimelineComponent
let fixture: ComponentFixture<SoldierTimelineComponent>

beforeEach(async(() => {
TestBed.configureTestingModule({
declarations: [ SoldierTimelineComponent ]
})
.compileComponents();
}));
.compileComponents()
}))

beforeEach(() => {
fixture = TestBed.createComponent(SoldierTimelineComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
fixture = TestBed.createComponent(SoldierTimelineComponent)
component = fixture.componentInstance
fixture.detectChanges()
})

it('should create', () => {
expect(component).toBeTruthy();
});
});
expect(component).toBeTruthy()
})
})

0 comments on commit faf175d

Please sign in to comment.