File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const TIMEOUT = 50_000;
12
12
const normalize = ( str : string ) =>
13
13
normalizeOutput ( str , {
14
14
[ CLOUDFLARE_ACCOUNT_ID ] : "CLOUDFLARE_ACCOUNT_ID" ,
15
- } ) . replaceAll ( / ^ A u t h o r : ( \s + ) . + @ . + $ / gm, "Author:$1person @example.com" ) ;
15
+ } ) . replaceAll ( / ^ A u t h o r : . * $ / gm, "Author: person @example.com" ) ;
16
16
const workerName = generateResourceName ( ) ;
17
17
const dispatchNamespaceName = generateResourceName ( "dispatch" ) ;
18
18
const dispatchWorkerName = generateResourceName ( ) ;
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ const workerName = generateResourceName();
19
19
const normalize = ( str : string ) =>
20
20
normalizeOutput ( str , {
21
21
[ CLOUDFLARE_ACCOUNT_ID ] : "CLOUDFLARE_ACCOUNT_ID" ,
22
- } ) . replaceAll ( / ^ A u t h o r : ( \s + ) . + @ . + $ / gm, "Author:$1person @example.com" ) ;
22
+ } ) . replaceAll ( / ^ A u t h o r : . * $ / gm, "Author: person @example.com" ) ;
23
23
24
24
describe ( "versions deploy" , { timeout : TIMEOUT } , ( ) => {
25
25
let versionId0 : string ;
You can’t perform that action at this time.
0 commit comments