mirror of
https://github.com/cypress-io/cypress.git
synced 2026-01-11 09:20:20 -06:00
Co-authored-by: Ben Kucera <14625260+Bkucera@users.noreply.github.com> Co-authored-by: Gleb Bahmutov <gleb.bahmutov@gmail.com> Co-authored-by: Brian Mann <brian.mann86@gmail.com> Co-authored-by: Zach Bloomquist <github@chary.us> Co-authored-by: Jennifer Shehane <shehane.jennifer@gmail.com>
16 lines
356 B
JavaScript
16 lines
356 B
JavaScript
require('@packages/coffee/register')
|
|
|
|
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),
|
|
)
|