diff --git a/lib/components/ApiInfo/api-info.spec.js b/lib/components/ApiInfo/api-info.spec.js index d44e1d97..d9f9e95f 100644 --- a/lib/components/ApiInfo/api-info.spec.js +++ b/lib/components/ApiInfo/api-info.spec.js @@ -37,13 +37,13 @@ describe('Redoc components', () => { }); - it('shold init component data', () => { + it('should init component data', () => { expect(component).not.toBeNull(); expect(component.data).not.toBeNull(); component.data.title.should.be.equal('Swagger Petstore'); }); - it('shold render api name and version', () => { + it('should render api name and version', () => { let nativeElement = getChildDebugElement(fixture.debugElement, 'api-info').nativeElement; let headerElement = nativeElement.querySelector('h1'); expect(headerElement).toHaveText('Swagger Petstore (1.0.0)');