16 lines
401 B
JavaScript
16 lines
401 B
JavaScript
|
describe('Path', function () {
|
||
|
describe('#bringToBack', function () {
|
||
|
it('is a no-op for layers not on a map', function () {
|
||
|
var path = new L.Path();
|
||
|
expect(path.bringToBack()).to.equal(path);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('#bringToFront', function () {
|
||
|
it('is a no-op for layers not on a map', function () {
|
||
|
var path = new L.Path();
|
||
|
expect(path.bringToFront()).to.equal(path);
|
||
|
});
|
||
|
})
|
||
|
});
|