mirror of
https://github.com/cypress-io/cypress.git
synced 2026-04-28 10:49:48 -05:00
20 lines
272 B
JavaScript
20 lines
272 B
JavaScript
const isInstalledGlobally = require('is-installed-globally')
|
|
|
|
module.exports = {
|
|
cwd () {
|
|
return process.cwd()
|
|
},
|
|
|
|
exit (code) {
|
|
process.exit(code)
|
|
},
|
|
|
|
exit1 () {
|
|
process.exit(1)
|
|
},
|
|
|
|
isInstalledGlobally () {
|
|
return isInstalledGlobally
|
|
},
|
|
}
|