Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/integration/live-api.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ async function createVirtualTestServer(handler: RequestListener): Promise<Virtua
}
}

describe('API integration', { timeout: 60000 }, () => {
describe('API integration', { timeout: 60000, retry: 1 }, () => {
describe('assembly creation', () => {
it('should create a retrievable assembly on the server', async () => {
const client = createClient()
Expand Down Expand Up @@ -586,7 +586,7 @@ describe('API integration', { timeout: 60000 }, () => {
})
})

describe('assembly notification', { retry: 2 }, () => {
describe('assembly notification', () => {
type OnNotification = (params: {
path?: string
client: Transloadit
Expand Down
2 changes: 1 addition & 1 deletion test/tunnel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ export interface CreateTunnelResult {

export async function createTunnel({ cloudFlaredPath = 'cloudflared', port }: CreateTunnelParams) {
const { process, url } = await pRetry(async () => startTunnel({ cloudFlaredPath, port }), {
retries: 1,
retries: 2,
})

async function close() {
Expand Down