mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-07-25 15:38:54 +00:00
fix non-extendable objects regression of 1.1.0
Closes #5650 until we figure out a less hacky solution.
This commit is contained in:
@ -8,4 +8,10 @@ describe('General', function () {
|
||||
|
||||
expect(L.noConflict()).to.eql(leaflet);
|
||||
});
|
||||
|
||||
describe('namespace extension', function () {
|
||||
L.Util.foo = 'bar';
|
||||
|
||||
expect(L.Util.foo).to.eql('bar');
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user