Skip to content

Commit cda7f6c

Browse files
committed
appease eslint
Dunno why eslint cannot find the config file correctly from the test directory when I'm using sublime...
1 parent ab3a9a2 commit cda7f6c

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

test/jasmine/assets/click.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ module.exports = function click(x, y) {
44
mouseEvent('mousemove', x, y);
55
mouseEvent('mousedown', x, y);
66
mouseEvent('mouseup', x, y);
7-
};
7+
};

test/jasmine/assets/double_click.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ module.exports = function doubleClick(x, y) {
1010
setTimeout(function() { resolve(); }, DBLCLICKDELAY / 2);
1111
}, DBLCLICKDELAY / 2);
1212
});
13-
};
13+
};

test/jasmine/tests/select_test.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ var d3 = require('d3');
22

33
var Plotly = require('@lib/index');
44
var Lib = require('@src/lib');
5-
var DBLCLICKDELAY = require('@src/plots/cartesian/constants').DBLCLICKDELAY;
6-
var click = require('../assets/click');
75
var doubleClick = require('../assets/double_click');
86

97
var createGraphDiv = require('../assets/create_graph_div');

0 commit comments

Comments
 (0)