Skip to content

Commit

Permalink
chore: disable test with known leaflet bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicolò Maria Mezzopera committed Jul 24, 2019
1 parent 5afb063 commit 7b89cf9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/mixin-tests/path-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7b89cf9

Please sign in to comment.