Rename updatefeature event to changefeature
This commit is contained in:
@@ -242,13 +242,13 @@ describe('ol.source.Vector', function() {
|
||||
expect(listener).to.be.called();
|
||||
});
|
||||
|
||||
it('fires a updatefeature event when updating a feature', function() {
|
||||
it('fires a changefeature event when updating a feature', function() {
|
||||
var feature = new ol.Feature(new ol.geom.Point([1, 1]));
|
||||
vectorSource.addFeature(feature);
|
||||
var listener = sinon.spy(function(event) {
|
||||
expect(event.feature).to.be(feature);
|
||||
});
|
||||
vectorSource.on('updatefeature', listener);
|
||||
vectorSource.on('changefeature', listener);
|
||||
feature.setStyle(null);
|
||||
expect(listener).to.be.called();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user