plotly.js
Version:
The open source javascript graphing library that powers plotly
18 lines (14 loc) • 484 B
JavaScript
var constants = require('./util/constants');
var common = require('./util/common');
var containerCommands = require('./util/container_commands');
var msg = [
'Running image export tests using build/plotly.js from',
common.getTimeLastModified(constants.pathToPlotlyBuild),
'\n'
].join(' ');
var cmd = containerCommands.getRunCmd(
process.env.CIRCLECI,
'node test/image/export_test.js ' + process.argv.slice(2).join(' ')
);
console.log(msg);
common.execCmd(cmd);