UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

22 lines (17 loc) 536 B
import Bluebird from 'bluebird' import http from 'http' import * as network from '@packages/network' export interface DestroyableHttpServer extends http.Server { /** asynchronously destroys the http server, waiting * for all open socket connections to first close */ destroyAsync (): Bluebird<void> } export const allowDestroy = (server) => { network.allowDestroy(server) server.destroyAsync = () => { return Bluebird.promisify(server.destroy)() .catch(() => {}) // dont catch any errors } return server }