We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3a4636 commit bea31c4Copy full SHA for bea31c4
test/helpers.js
@@ -554,7 +554,7 @@ export async function getLatestURLWithToken() {
554
const response = await fetch(`${TEST_APPLICATION_SERVER_BASE_URL}/token`);
555
const respBody = await response.json();
556
latestURLWithToken = respBody.latestURLWithToken;
557
- if (latestURLWithToken === undefined) {
+ if (latestURLWithToken === undefined || latestURLWithToken === "") {
558
if (Date.now() - start > 10000) {
559
throw new Error("Timeout waiting for latestURLWithToken");
560
}
0 commit comments