mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-07 07:39:52 -06:00
* chore: convert @packages/https-proxy to TypeScript and use vitest instead of mocha * chore: address comments from code review * Update packages/https-proxy/vitest.config.ts
8 lines
245 B
TypeScript
8 lines
245 B
TypeScript
import fs from 'fs'
|
|
import path from 'path'
|
|
|
|
export const options = {
|
|
key: fs.readFileSync(path.join(__dirname, 'certs', 'server', 'my-server.key.pem')),
|
|
cert: fs.readFileSync(path.join(__dirname, 'certs', 'server', 'my-server.crt.pem')),
|
|
}
|