mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-05 06:40:56 -06:00
45 lines
892 B
CoffeeScript
45 lines
892 B
CoffeeScript
require("./environment")
|
|
|
|
_ = require("lodash")
|
|
path = require("path")
|
|
repl = require("repl")
|
|
history = require("repl.history")
|
|
browsers = require("./browsers")
|
|
Fixtures = require("../test/support/helpers/fixtures")
|
|
|
|
replServer = repl.start({
|
|
prompt: "> "
|
|
})
|
|
|
|
## preserve the repl history
|
|
history(replServer, path.join(process.env.HOME, ".node_history"))
|
|
|
|
req = replServer.context.require
|
|
|
|
getObj = ->
|
|
deploy = require("../deploy")
|
|
|
|
return {
|
|
lodash: _
|
|
deploy: deploy
|
|
darwin: deploy.getPlatform("darwin")
|
|
linux: deploy.getPlatform("linux")
|
|
Fixtures: Fixtures
|
|
browsers: browsers
|
|
|
|
reload: ->
|
|
for key of require.cache
|
|
delete require.cache[key]
|
|
|
|
for key of req.cache
|
|
delete req.cache[key]
|
|
|
|
setContext()
|
|
|
|
r: (file) ->
|
|
return require(file)
|
|
}
|
|
|
|
do setContext = ->
|
|
_.extend replServer.context, getObj()
|