selenium-standalone
Version:
installs a `selenium-standalone` command line to install and start a standalone selenium server
18 lines (14 loc) • 290 B
JavaScript
const debug = require('debug')('selenium-standalone:install');
/**
* @template T
* @param {string} fnName
* @param {T} [opts]
* @returns {T}
*/
const checkArgs = (fnName, opts) => {
debug(fnName + ' called with', opts);
return { ...opts };
};
module.exports = {
checkArgs,
};