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 9779c96 commit d63578bCopy full SHA for d63578b
test/image/assets/get_image_request_options.js
@@ -17,6 +17,12 @@ module.exports = function getRequestOpts(specs) {
17
var pathToMock = path.join(constants.pathToTestImageMocks, specs.mockName) + '.json';
18
var figure = require(pathToMock);
19
20
+ figure.data.forEach(function(t) {
21
+ if(t.type === 'scattergl') {
22
+ t.type = 'scatter';
23
+ }
24
+ })
25
+
26
var body = {
27
figure: figure,
28
format: specs.format || DEFAULT_FORMAT,
0 commit comments