From 7b89cf905725d740fcb19d03c89088c85669b1d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Maria=20Mezzopera?= Date: Wed, 24 Jul 2019 09:22:10 +0200 Subject: [PATCH] chore: disable test with known leaflet bug --- tests/mixin-tests/path-tests.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/mixin-tests/path-tests.js b/tests/mixin-tests/path-tests.js index 1ab5b7f0..c4e6ad5d 100644 --- a/tests/mixin-tests/path-tests.js +++ b/tests/mixin-tests/path-tests.js @@ -100,7 +100,8 @@ export const testPathFunctionality = (component, componentName = 'it') => { expect(wrapper.vm.mapObject.options.weight).toEqual(newWeight); }); - test(`${componentName} updates weight using setWeight`, async () => { + // Disable this till https://github.com/Leaflet/Leaflet/pull/6671 is merged on leaflet side + test.skip(`${componentName} updates weight using setWeight`, async () => { const { wrapper } = getWrapperWithMap(component, { weight: 2 }); const newWeight = 4;