mirror of https://github.com/actions/toolkit
tests
parent
2e5b10e3bd
commit
6477ef1460
|
@ -1,6 +1,6 @@
|
|||
import * as http from 'http'
|
||||
import * as https from 'https'
|
||||
import { createProxy } from 'proxy'
|
||||
import { proxy } from 'proxy'
|
||||
|
||||
// Default values are set when the module is imported, so we need to set proxy first.
|
||||
const proxyUrl = 'http://127.0.0.1:8081'
|
||||
|
@ -16,7 +16,7 @@ describe('@actions/github', () => {
|
|||
|
||||
beforeAll(async () => {
|
||||
// Start proxy server
|
||||
proxyServer = createProxy()
|
||||
proxyServer = proxy()
|
||||
await new Promise<void>(resolve => {
|
||||
const port = Number(proxyUrl.split(':')[2])
|
||||
proxyServer.listen(port, () => resolve())
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
import * as http from 'http'
|
||||
import { createProxy } from 'proxy'
|
||||
import { proxy } from 'proxy'
|
||||
import {getOctokit} from '../src/github'
|
||||
import {GitHub, getOctokitOptions} from '../src/utils'
|
||||
|
||||
|
@ -12,7 +12,7 @@ describe('@actions/github', () => {
|
|||
|
||||
beforeAll(async () => {
|
||||
// Start proxy server
|
||||
proxyServer = createProxy()
|
||||
proxyServer = proxy()
|
||||
await new Promise(resolve => {
|
||||
const port = Number(proxyUrl.split(':')[2])
|
||||
proxyServer.listen(port, () => resolve(null))
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
"@octokit/plugin-rest-endpoint-methods": "^7.2.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/proxy": "^1.0.1",
|
||||
"proxy": "^2.1.1"
|
||||
}
|
||||
},
|
||||
|
@ -162,21 +161,6 @@
|
|||
"@octokit/openapi-types": "^18.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@types/node": {
|
||||
"version": "20.6.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.1.tgz",
|
||||
"integrity": "sha512-4LcJvuXQlv4lTHnxwyHQZ3uR9Zw2j7m1C9DfuwoTFQQP4Pmu04O6IfLYgMmHoOCt0nosItLLZAH+sOrRE0Bo8g==",
|
||||
"dev": true
|
||||
},
|
||||
"node_modules/@types/proxy": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/proxy/-/proxy-1.0.1.tgz",
|
||||
"integrity": "sha512-vjRgU9Ke0+6sfVeAXQphHRGb+OgBNpah1fma4aP7Pto2rnlrPDjsq+vyvy7emw+Fc9ppEciQtRh9Gaaxzu1Gzw==",
|
||||
"dev": true,
|
||||
"dependencies": {
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"node_modules/ansi-styles": {
|
||||
"version": "3.2.1",
|
||||
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
||||
|
@ -532,21 +516,6 @@
|
|||
"@octokit/openapi-types": "^18.0.0"
|
||||
}
|
||||
},
|
||||
"@types/node": {
|
||||
"version": "20.6.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.6.1.tgz",
|
||||
"integrity": "sha512-4LcJvuXQlv4lTHnxwyHQZ3uR9Zw2j7m1C9DfuwoTFQQP4Pmu04O6IfLYgMmHoOCt0nosItLLZAH+sOrRE0Bo8g==",
|
||||
"dev": true
|
||||
},
|
||||
"@types/proxy": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/@types/proxy/-/proxy-1.0.1.tgz",
|
||||
"integrity": "sha512-vjRgU9Ke0+6sfVeAXQphHRGb+OgBNpah1fma4aP7Pto2rnlrPDjsq+vyvy7emw+Fc9ppEciQtRh9Gaaxzu1Gzw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@types/node": "*"
|
||||
}
|
||||
},
|
||||
"ansi-styles": {
|
||||
"version": "3.2.1",
|
||||
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
||||
|
|
|
@ -44,7 +44,6 @@
|
|||
"@octokit/plugin-rest-endpoint-methods": "^7.2.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"proxy": "^2.1.1",
|
||||
"@types/proxy": "^1.0.1"
|
||||
"proxy": "^2.1.1"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue