mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-06 22:49:46 -06:00
14 lines
318 B
JavaScript
14 lines
318 B
JavaScript
const Promise = require('bluebird')
|
|
const proxy = require('./test/helpers/proxy')
|
|
const httpServer = require('./test/helpers/http_server')
|
|
const httpsServer = require('./test/helpers/https_server')
|
|
|
|
Promise.join(
|
|
httpServer.start(8888),
|
|
|
|
httpsServer.start(8444),
|
|
httpsServer.start(8445),
|
|
|
|
proxy.start(3333),
|
|
)
|