Skip to content

Commit b22556b

Browse files
committed
bump timeouts
1 parent f04e308 commit b22556b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/test/src/test-integration-workflows.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1376,7 +1376,7 @@ test('root execution is exposed', async (t) => {
13761376
}
13771377
}
13781378
};
1379-
await waitUntil(childStarted, 3000);
1379+
await waitUntil(childStarted, 5000);
13801380
const childDesc = await childHandle.describe();
13811381
const parentDesc = await handle.describe();
13821382

packages/test/src/test-schedules.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ if (RUN_INTEGRATION_TESTS) {
773773
const exists =
774774
desc.typedSearchAttributes.getAll().find((pair) => pair.key.name === attributeName) !== undefined;
775775
return exists === shouldExist;
776-
}, 300);
776+
}, 5000);
777777
return await handle.describe();
778778
};
779779

packages/test/src/test-typed-search-attributes.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ if (test?.serial?.before) {
135135
Object.keys(untypedKeys).every((key) => key in resp.customAttributes) &&
136136
Object.keys(typedKeys).every((key) => key in resp.customAttributes)
137137
);
138-
}, 300);
138+
}, 5000);
139139
});
140140
}
141141

0 commit comments

Comments
 (0)