Skip to content

Commit

Permalink
Remove unneeded calls to shutdown the proxy
Browse files Browse the repository at this point in the history
  • Loading branch information
Landon Grindheim authored and GitHub committed May 4, 2022
1 parent bba2211 commit 1bf953b
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions __tests__/proxy-integration.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ integration('ProxyBuilder', () => {
const proc = spawnSync('docker', ['exec', id, 'printenv', 'http_proxy'])
const output = proc.stdout.toString().trim()
expect(output).toMatch(url)

await proxy.shutdown()
})

jest.setTimeout(20000)
Expand All @@ -128,7 +126,5 @@ integration('ProxyBuilder', () => {
const proc = spawnSync('docker', ['exec', id, 'printenv', 'https_proxy'])
const output = proc.stdout.toString().trim()
expect(output).toEqual(url)

await proxy.shutdown()
})
})

0 comments on commit 1bf953b

Please sign in to comment.