mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-20 06:01:12 -06:00
43 lines
1.1 KiB
CoffeeScript
43 lines
1.1 KiB
CoffeeScript
require("./util/http_overrides")
|
|
require("./fs_warn")(require("fs-extra"))
|
|
|
|
os = require("os")
|
|
cwd = require("./cwd")
|
|
Promise = require("bluebird")
|
|
|
|
## never cut off stack traces
|
|
Error.stackTraceLimit = Infinity
|
|
|
|
## cannot use relative require statement
|
|
## here because when obfuscated package
|
|
## would not be available
|
|
pkg = require("@packages/root")
|
|
|
|
try
|
|
## i wish we didn't have to do this but we have to append
|
|
## these command line switches immediately
|
|
app = require("electron").app
|
|
app.commandLine.appendSwitch("disable-renderer-backgrounding", true)
|
|
app.commandLine.appendSwitch("ignore-certificate-errors", true)
|
|
|
|
if os.platform() is "linux"
|
|
app.disableHardwareAcceleration()
|
|
|
|
## instead of setting NODE_ENV we will
|
|
## use our own separate CYPRESS_ENV so
|
|
## as not to conflict with CI providers
|
|
|
|
## use env from package first
|
|
## or development as default
|
|
env = process.env["CYPRESS_ENV"] or= pkg.env ? "development"
|
|
|
|
Promise.config({
|
|
## uses cancellation for automation timeouts
|
|
cancellation: true
|
|
|
|
## enable long stack traces in dev
|
|
longStackTraces: env is "development"
|
|
})
|
|
|
|
module.exports = env
|