Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7c3279 commit fe62eb8Copy full SHA for fe62eb8
test/jasmine/tests/click_test.js
@@ -1059,17 +1059,17 @@ describe('Test click interactions:', function() {
1059
width: 600,
1060
height: 600
1061
}).then(function() {
1062
- expect(gd.layout.xaxis.range).toBeCloseToArray([1, 2.068]);
+ expect(gd.layout.xaxis.range).toBeCloseToArray([1, 2.068], 1);
1063
1064
return doubleClick(300, 300);
1065
})
1066
.then(function() {
1067
- expect(gd.layout.xaxis.range).toBeCloseToArray([-0.2019, 3.249]);
+ expect(gd.layout.xaxis.range).toBeCloseToArray([-0.2019, 3.249], 1);
1068
1069
1070
1071
1072
1073
1074
.then(done, done.fail);
1075
});
0 commit comments