Skip to content

Commit

Permalink
add waitFor EXTERNAL_ADAPTER_URL to test setup
Browse files Browse the repository at this point in the history
  • Loading branch information
RyanRHall committed Mar 11, 2020
1 parent c995a27 commit 11f8a0c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/ci-ts/jest.setup.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import { getArgs, waitForService } from './test-helpers/common'

const { CHAINLINK_URL } = getArgs(['CHAINLINK_URL'])
const { CHAINLINK_URL, EXTERNAL_ADAPTER_URL } = getArgs([
'CHAINLINK_URL',
'EXTERNAL_ADAPTER_URL',
])

beforeAll(async () => {
await waitForService(CHAINLINK_URL)
await waitForService(EXTERNAL_ADAPTER_URL)
})

0 comments on commit 11f8a0c

Please sign in to comment.