mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-13 10:19:55 -06:00
13 lines
218 B
CoffeeScript
13 lines
218 B
CoffeeScript
CA = require("./ca")
|
|
Server = require("./server")
|
|
|
|
module.exports = {
|
|
create: (dir, port, options) ->
|
|
CA.create(dir)
|
|
.then (ca) ->
|
|
Server.create(ca, port, options)
|
|
|
|
reset: ->
|
|
Server.reset()
|
|
|
|
} |