@@ -68,7 +68,7 @@ describe("OpenAPIGenerator", () => {
6868 } ) ;
6969
7070 describe ( "generationAndValidation" , ( ) => {
71- it ( "should correctly generate a valid openAPI document" , async function ( ) {
71+ it ( "should correctly generate a valid OpenAPI document" , async function ( ) {
7272 const succSpy = sinon . spy ( logOutput . log , "success" ) ;
7373 const errSpy = sinon . spy ( logOutput . log , "error" ) ;
7474
@@ -99,7 +99,7 @@ describe("OpenAPIGenerator", () => {
9999 getFuncStub . reset ( ) ;
100100 } ) ;
101101
102- xit ( "should throw an error when trying to generate an invalid openAPI document" , async function ( ) {
102+ xit ( "should throw an error when trying to generate an invalid OpenAPI document" , async function ( ) {
103103 const succSpy = sinon . spy ( logOutput . log , "success" ) ;
104104 const errSpy = sinon . spy ( logOutput . log , "error" ) ;
105105
@@ -135,7 +135,7 @@ describe("OpenAPIGenerator", () => {
135135 getFuncStub . reset ( ) ;
136136 } ) ;
137137
138- it ( "should correctly validate a valid openAPI document" , async function ( ) {
138+ it ( "should correctly validate a valid OpenAPI document" , async function ( ) {
139139 const succSpy = sinon . spy ( logOutput . log , "success" ) ;
140140 const errSpy = sinon . spy ( logOutput . log , "error" ) ;
141141
@@ -168,7 +168,7 @@ describe("OpenAPIGenerator", () => {
168168 getFuncStub . reset ( ) ;
169169 } ) ;
170170
171- it ( "should throw an error when trying to validate an invalid openAPI document" , async function ( ) {
171+ it ( "should throw an error when trying to validate an invalid OpenAPI document" , async function ( ) {
172172 const succSpy = sinon . spy ( logOutput . log , "success" ) ;
173173 const errSpy = sinon . spy ( logOutput . log , "error" ) ;
174174
@@ -212,7 +212,7 @@ describe("OpenAPIGenerator", () => {
212212 } ) ;
213213
214214 describe ( "createPostman" , ( ) => {
215- it ( "should generate a postman collection when a valid openAPI file is generated" , function ( ) {
215+ it ( "should generate a postman collection when a valid OpenAPI file is generated" , function ( ) {
216216 const fsStub = sinon . stub ( fs , "writeFileSync" ) . returns ( true ) ;
217217 const succSpy = sinon . spy ( logOutput . log , "success" ) ;
218218 const errSpy = sinon . spy ( logOutput . log , "error" ) ;
0 commit comments