Leaflet/spec/suites/layer/vector/PathSpec.js
John Firebaugh e6d857eb70 jshint
2014-11-05 15:22:49 -08:00

16 lines
402 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);
});
});
});