mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-21 22:50:13 -06:00
* server: polyfill tty.getWindowSize close #1815 * correctly polyfill getWindowSize for stdout and stderr, dont touch tty - use our terminal-size wrapper * fix not having coffeescript available yet
14 lines
151 B
JavaScript
14 lines
151 B
JavaScript
const set = (key, val) => {
|
|
return process.env[key] = val
|
|
}
|
|
|
|
const get = (key) => {
|
|
return process.env[key]
|
|
}
|
|
|
|
module.exports = {
|
|
set,
|
|
|
|
get,
|
|
}
|