From: stockiNail Date: Fri, 13 Jan 2023 14:33:34 +0000 (+0100) Subject: Remove console.warn from a test case where not needed (#11056) X-Git-Tag: v4.2.0~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4cd68535d73295feb321898cb343d39a3ad3ba4e;p=thirdparty%2FChart.js.git Remove console.warn from a test case where not needed (#11056) --- diff --git a/test/specs/helpers.config.tests.js b/test/specs/helpers.config.tests.js index f78782216..b4d08b960 100644 --- a/test/specs/helpers.config.tests.js +++ b/test/specs/helpers.config.tests.js @@ -689,7 +689,6 @@ describe('Chart.helpers.config', function() { const resolver = _createResolver([options, defaults, descriptors]); const opts = _attachContext(resolver, {dymmy: true}); const item0 = opts.items[0]; - console.warn(opts._proxy._scopes); expect(item0.test).toEqual(true); expect(spy).toHaveBeenCalledWith('items', options.items[0]); });