mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-27 03:19:22 -06:00
feat(deps): update dependency electron to version 12.x 🌟 (#15292)
Co-authored-by: Renovate Bot <bot@renovateapp.com> Co-authored-by: Zach Bloomquist <git@chary.us>
This commit is contained in:
@@ -269,7 +269,7 @@ class CA {
|
||||
}
|
||||
|
||||
writeCAVersion () {
|
||||
return fs.outputFileAsync(this.getCAVersionPath(), CA_VERSION)
|
||||
return fs.outputFileAsync(this.getCAVersionPath(), String(CA_VERSION))
|
||||
}
|
||||
|
||||
assertMinimumCAVersion () {
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
const _ = require('lodash')
|
||||
const { allowDestroy, connect } = require('@packages/network')
|
||||
const { allowDestroy, connect, httpUtils } = require('@packages/network')
|
||||
const debug = require('debug')('cypress:https-proxy')
|
||||
const https = require('https')
|
||||
const net = require('net')
|
||||
@@ -227,7 +227,10 @@ class Server {
|
||||
|
||||
_listenHttpsServer (data) {
|
||||
return new Promise((resolve, reject) => {
|
||||
const server = https.createServer(data)
|
||||
const server = https.createServer({
|
||||
...data,
|
||||
...httpUtils.lenientOptions,
|
||||
})
|
||||
|
||||
allowDestroy(server)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user