Files
leaflet/spec/suites/core/GeneralSpec.js
2025-03-24 11:17:03 +01:00

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');
});
});