51dc10b467
* fix: remove flakey tests * increase setup time * reduce max workers * Update .github/workflows/test.yml Co-authored-by: Zach Pomerantz <zzmp@uniswap.org> * Update functions/global-setup.ts Co-authored-by: Zach Pomerantz <zzmp@uniswap.org> * Update global-teardown.ts * add retry time --------- Co-authored-by: Zach Pomerantz <zzmp@uniswap.org>
20 lines
667 B
TypeScript
20 lines
667 B
TypeScript
import { setup } from 'jest-dev-server'
|
|
|
|
module.exports = async function globalSetup() {
|
|
globalThis.servers = await setup({
|
|
command: `yarn start:cloud`,
|
|
port: 3000,
|
|
launchTimeout: 120000, // takes ~2m on CI
|
|
})
|
|
// Wait for wrangler to return a request before running tests
|
|
for (let i = 0; i < 3; i++) {
|
|
const res = await fetch(new Request('http://127.0.0.1:3000/tokens/ethereum/NATIVE'))
|
|
if (res.ok) {
|
|
return
|
|
}
|
|
// Set timeout to make sure the server isn't flooded with requests if wrangler is not running
|
|
await new Promise((resolve) => setTimeout(resolve, 500 * (i + 1)))
|
|
}
|
|
throw new Error('Failed to start server')
|
|
}
|