mirror of
https://github.com/FoggedLens/iD.git
synced 2026-05-15 21:48:20 +02:00
Fix lints
This commit is contained in:
@@ -58,7 +58,7 @@ export function Lines(projection) {
|
||||
|
||||
var layer = surface
|
||||
.selectAll('.layer-lines')
|
||||
.data([0])
|
||||
.data([0]);
|
||||
|
||||
layer = layer.enter()
|
||||
.append('g').attr('class', 'layer-lines')
|
||||
|
||||
@@ -39,7 +39,6 @@ describe('iD.ui.RawTagEditor', function() {
|
||||
it('adds tags when clicking the add button', function (done) {
|
||||
happen.click(element.selectAll('button.add-tag').node());
|
||||
setTimeout(function() {
|
||||
console.log(element.select('.tag-list').selectAll('input').nodes());
|
||||
expect(element.select('.tag-list').selectAll('input').nodes()[2].value).to.be.empty;
|
||||
expect(element.select('.tag-list').selectAll('input').nodes()[3].value).to.be.empty;
|
||||
done();
|
||||
|
||||
Reference in New Issue
Block a user