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

Commit

Permalink
issue#46_4
Browse files Browse the repository at this point in the history
errors solved.
  • Loading branch information
nachobaru committed Mar 26, 2019
1 parent c5bbb95 commit f1ef4cb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/app/help-component/help-component.component.spec.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import { async, ComponentFixture, TestBed } from '@angular/core/testing';

import { HelpComponentComponent } from './help-component.component';
import { HelpComponent } from './help-component.component';

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

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

beforeEach(() => {
fixture = TestBed.createComponent(HelpComponentComponent);
fixture = TestBed.createComponent(HelpComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
Expand Down

0 comments on commit f1ef4cb

Please sign in to comment.