mirror of
https://github.com/Leaflet/Leaflet.git
synced 2025-07-20 16:37:08 +00:00
13 lines
241 B
JavaScript
13 lines
241 B
JavaScript
import L from 'leaflet-bundle';
|
|
import {expect} from 'chai';
|
|
|
|
describe('General', () => {
|
|
it('namespace extension', () => {
|
|
L.Util.foo = 'bar';
|
|
L.Foo = 'Bar';
|
|
|
|
expect(L.Util.foo).to.eql('bar');
|
|
expect(L.Foo).to.eql('Bar');
|
|
});
|
|
});
|