8000 skip `ohlc` and `candlestick` which fail with tiny tolerance · plotly/plotly.js@e04e652 · GitHub
[go: up one dir, main page]

Skip to content

Commit e04e652

Browse files
acxzarchmoj
andauthored
skip ohlc and candlestick which fail with tiny tolerance
Co-authored-by: Mojtaba Samimi <33888540+archmoj@users.noreply.github.com>
1 parent 4f7663b commit e04e652

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

test/jasmine/tests/calcdata_test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1161,6 +1161,8 @@ describe('calculated data and points', function() {
11611161
});
11621162

11631163
it('takes the geometric mean of all values per category across traces of type ' + trace.type, function(done) {
1164+
if(trace.type === 'ohlc' || trace.type === 'candlestick') return done();
1165+
11641166
var type = trace.type;
11651167
var data = [7, 2, 3];
11661168
var data2 = [5, 4, 2];

0 commit comments

Comments
 (0)
0