From d8c2aa2e886260ba722173482b1e48785f8824ef Mon Sep 17 00:00:00 2001 From: Sergio Moya <1083296+smoya@users.noreply.github.com> Date: Fri, 12 May 2023 21:11:36 +0200 Subject: [PATCH] rm unused mock --- test/__mocks__/@asyncapi/parser.js | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 test/__mocks__/@asyncapi/parser.js diff --git a/test/__mocks__/@asyncapi/parser.js b/test/__mocks__/@asyncapi/parser.js deleted file mode 100644 index f5b5b075d..000000000 --- a/test/__mocks__/@asyncapi/parser.js +++ /dev/null @@ -1,7 +0,0 @@ -const parser = jest.genMockFromModule('@asyncapi/parser'); - -parser.parse = jest.fn(async (asyncapiString, options) => { - return new parser.AsyncAPIDocument({}); -}); - -module.exports = parser;