Remove console.warn from a test case where not needed (#11056)

This commit is contained in:
stockiNail 2023-01-13 15:33:34 +01:00 committed by GitHub
parent 0e189dd554
commit 4cd68535d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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]);
});