diff --git a/__tests__/oas.test.js b/__tests__/oas.test.js index 0fb7cf41..0861a30f 100644 --- a/__tests__/oas.test.js +++ b/__tests__/oas.test.js @@ -133,13 +133,12 @@ describe('class.Oas', () => { expect(res).toBeUndefined(); }); - it('should return a a result if found', () => { + it('should return a result if found', () => { const oas = new Oas(petstore); const uri = `http://petstore.swagger.io/v2/pet/1`; const method = 'DELETE'; const res = oas.findOperation(uri, method); - console.log(JSON.stringify(res)); expect(res.logOperation).toMatchObject({ url: { origin: 'http://petstore.swagger.io/v2',