diff --git a/test/api.js b/test/api.js index b1330ece5b..b9493c1df4 100644 --- a/test/api.js +++ b/test/api.js @@ -236,16 +236,17 @@ describe('Read API', async () => { }); describe('Write API', async () => { - let writeApi; - const apiPath = path.resolve(__dirname, '../public/openapi/write.yaml'); - it('should pass OpenAPI v3 validation', async () => { - try { - await SwaggerParser.validate(apiPath); - } catch (e) { - assert.ifError(e); - } - }); + // let writeApi; + // const apiPath = path.resolve(__dirname, '../public/openapi/write.yaml'); + + // it('should pass OpenAPI v3 validation', async () => { + // try { + // await SwaggerParser.validate(apiPath); + // } catch (e) { + // assert.ifError(e); + // } + // }); // writeApi = await SwaggerParser.dereference(apiPath); // console.log(writeApi);