From 3e26524254b07a88a0ce88471060303d9f51544b Mon Sep 17 00:00:00 2001 From: hgpark Date: Fri, 22 Mar 2024 12:41:07 +0900 Subject: [PATCH] style: remove unnecessary console.log --- test/validateSchema.test.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/test/validateSchema.test.ts b/test/validateSchema.test.ts index b9306ed..bcc74da 100644 --- a/test/validateSchema.test.ts +++ b/test/validateSchema.test.ts @@ -79,6 +79,5 @@ it('returns a valid Swagger/OpenAPI json config for many routes', async () => { ) const res = await app.handle(req('/swagger/json')).then((x) => x.json()) - console.log(res.paths['/json/{id}'].post.parameters) await SwaggerParser.validate(res).catch((err) => fail(err)) })