storybook/lib/cli/test/helpers.js
2020-11-28 13:09:42 +05:30

17 lines
402 B
JavaScript

const { sync: spawnSync } = require('cross-spawn');
const path = require('path');
const CLI_PATH = path.join(__dirname, '..', 'bin');
/**
* Execute command
* @param {String[]} args - args to be passed in
* @param {Object} options - customize the behavior
*
* @returns {Object}
*/
const run = (args, options = {}) =>
spawnSync('node', [CLI_PATH].concat(args), options);
module.exports = run;