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 920a333 commit ad7d882Copy full SHA for ad7d882
test/image/assets/get_image_request_options.js
@@ -23,6 +23,9 @@ module.exports = function getRequestOpts(specs) {
23
scale: specs.scale || DEFAULT_SCALE
24
};
25
26
+ if(specs.width) body.width = specs.width;
27
+ if(specs.height) body.height = specs.height;
28
+
29
return {
30
method: 'POST',
31
url: constants.testContainerUrl,
0 commit comments