From 418810a0f9dffe26584ac60e153c5c041618af0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Urba=C5=84czyk?= Date: Tue, 24 Jan 2023 18:37:19 +0100 Subject: [PATCH] test: skip memory usage test (#694) --- test/parse_test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/parse_test.js b/test/parse_test.js index d2635ca88..fd3cc2c39 100644 --- a/test/parse_test.js +++ b/test/parse_test.js @@ -896,7 +896,8 @@ it('should fail on invalid examples', async function() { }, expectedErrorObject); }); -describe('memory usage', function () { +// eslint-disable-next-line mocha/no-skipped-tests +describe.skip('memory usage', function () { it('should use this same instance of validation function in each call', async function() { this.timeout(12500); const asyncapi = fs.readFileSync(path.resolve(__dirname, './good/zbos_mqtt-all-asyncapi.json'), 'utf8');