mirror of
https://github.com/FoggedLens/iD.git
synced 2026-02-13 09:12:52 +00:00
displaying keep right (currently as notes)
This commit is contained in:
committed by
Bryan Housel
parent
b96965568f
commit
75cff00a2a
@@ -27,6 +27,7 @@ describe('iD.svgLayers', function () {
|
||||
container.call(iD.svgLayers(projection, context));
|
||||
var nodes = container.selectAll('svg .data-layer').nodes();
|
||||
expect(nodes.length).to.eql(10);
|
||||
<<<<<<< HEAD
|
||||
expect(d3.select(nodes[0]).classed('osm')).to.be.true;
|
||||
expect(d3.select(nodes[1]).classed('notes')).to.be.true;
|
||||
expect(d3.select(nodes[2]).classed('data')).to.be.true;
|
||||
@@ -37,6 +38,18 @@ describe('iD.svgLayers', function () {
|
||||
expect(d3.select(nodes[7]).classed('debug')).to.be.true;
|
||||
expect(d3.select(nodes[8]).classed('geolocate')).to.be.true;
|
||||
expect(d3.select(nodes[9]).classed('touch')).to.be.true;
|
||||
=======
|
||||
expect(d3.select(nodes[0]).classed('data-layer-osm')).to.be.true;
|
||||
expect(d3.select(nodes[1]).classed('data-layer-notes')).to.be.true;
|
||||
expect(d3.select(nodes[2]).classed('data-layer-keepRight')).to.be.true;
|
||||
expect(d3.select(nodes[3]).classed('data-layer-gpx')).to.be.true;
|
||||
expect(d3.select(nodes[4]).classed('data-layer-mvt')).to.be.true;
|
||||
expect(d3.select(nodes[5]).classed('data-layer-streetside')).to.be.true;
|
||||
expect(d3.select(nodes[6]).classed('data-layer-mapillary-images')).to.be.true;
|
||||
expect(d3.select(nodes[7]).classed('data-layer-mapillary-signs')).to.be.true;
|
||||
expect(d3.select(nodes[8]).classed('data-layer-openstreetcam-images')).to.be.true;
|
||||
expect(d3.select(nodes[9]).classed('data-layer-debug')).to.be.true;
|
||||
>>>>>>> displaying keep right (currently as notes)
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user