Files
cypress/packages/server/lib/util/server_destroy.coffee
2017-05-09 13:51:45 -04:00

11 lines
242 B
CoffeeScript

Promise = require("bluebird")
allowDestroy = require("server-destroy")
module.exports = (server) ->
allowDestroy(server)
server.destroyAsync = ->
Promise.promisify(server.destroy)()
.catch ->
## dont catch any errors