Add Firefox support (#1359)

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>
This commit is contained in:
Chris Breiding
2020-02-06 10:52:13 -05:00
committed by GitHub
parent aa1cc0ddbe
commit d76123b3d9
168 changed files with 4995 additions and 1134 deletions

View File

@@ -1,3 +1,15 @@
require('@packages/coffee/register')
module.exports = require('./test/helpers/https_server')
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),
)