freeCodeCamp/cypress-install.js

13 lines
306 B
JavaScript
Raw Normal View History

const util = require('cypress/lib/util');
const execa = require('execa');
const pkg = util.pkgVersion();
(async () => {
console.log('Installing Cypress ' + pkg);
await execa('npm', ['run', 'cypress:install'], {
env: { CYPRESS_INSTALL_BINARY: pkg }
});
console.log('Cypress installed');
})();