15 lines
333 B
JavaScript
15 lines
333 B
JavaScript
|
describe('L#noConflict', function() {
|
||
|
it('should restore the previous L value and return Leaflet namespace', function(){
|
||
|
|
||
|
expect(L.version).toBeDefined();
|
||
|
|
||
|
var L2 = L.noConflict();
|
||
|
|
||
|
expect(L).toEqual('test');
|
||
|
expect(L2.version).toBeDefined();
|
||
|
|
||
|
this.after(function() {
|
||
|
window.L = L2;
|
||
|
});
|
||
|
});
|
||
|
});
|