Skip to content

Commit b487415

Browse files
committed
Actually fix CI
1 parent d89e1ad commit b487415

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/wrangler/e2e/deployments.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const TIMEOUT = 50_000;
1212
const normalize = (str: string) =>
1313
normalizeOutput(str, {
1414
[CLOUDFLARE_ACCOUNT_ID]: "CLOUDFLARE_ACCOUNT_ID",
15-
}).replaceAll(/^Author:(\s+).+@.+$/gm, "Author:$1person@example.com");
15+
}).replaceAll(/^Author:.*$/gm, "Author: person@example.com");
1616
const workerName = generateResourceName();
1717
const dispatchNamespaceName = generateResourceName("dispatch");
1818
const dispatchWorkerName = generateResourceName();

packages/wrangler/e2e/versions.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const workerName = generateResourceName();
1919
const normalize = (str: string) =>
2020
normalizeOutput(str, {
2121
[CLOUDFLARE_ACCOUNT_ID]: "CLOUDFLARE_ACCOUNT_ID",
22-
}).replaceAll(/^Author:(\s+).+@.+$/gm, "Author:$1person@example.com");
22+
}).replaceAll(/^Author:.*$/gm, "Author: person@example.com");
2323

2424
describe("versions deploy", { timeout: TIMEOUT }, () => {
2525
let versionId0: string;

0 commit comments

Comments
 (0)