@@ -289,20 +289,20 @@ describe('GithubUtils', () => {
289
289
const baseExpectedOutput = `**Release Version:** \`${ tag } \`\r\n**Compare Changes:** https://github.com/Expensify/App/compare/production...staging\r\n\r\n**This release contains changes from the following pull requests:**` ;
290
290
const openCheckbox = ' - [ ]' ;
291
291
const closedCheckbox = ' - [x]' ;
292
- const listStart = '- '
293
- const QA = ' QA'
294
- const accessibility = ' Accessibility'
292
+ const listStart = '- ' ;
293
+ const QA = ' QA' ;
294
+ const accessibility = ' Accessibility' ;
295
295
const ccApplauseLeads = 'cc @Expensify/applauseleads\r\n' ;
296
296
const deployBlockerHeader = '\r\n**Deploy Blockers:**' ;
297
- const lineBreak = '\r\n'
298
- const lineBreakDouble = '\r\n\r\n'
297
+ const lineBreak = '\r\n' ;
298
+ const lineBreakDouble = '\r\n\r\n' ;
299
299
300
300
// Valid output which will be reused in the deploy blocker tests
301
- const allVerifiedExpectedOutput = `${ baseExpectedOutput } ` +
302
- `${ lineBreakDouble } ${ listStart } ${ basePRList [ 3 ] } ${ lineBreak } ${ closedCheckbox } ${ QA } ${ lineBreak } ${ openCheckbox } ${ accessibility } ` +
303
- `${ lineBreakDouble } ${ listStart } ${ basePRList [ 0 ] } ${ lineBreak } ${ closedCheckbox } ${ QA } ${ lineBreak } ${ openCheckbox } ${ accessibility } ` +
304
- `${ lineBreakDouble } ${ listStart } ${ basePRList [ 1 ] } ${ lineBreak } ${ closedCheckbox } ${ QA } ${ lineBreak } ${ openCheckbox } ${ accessibility } `
305
-
301
+ const allVerifiedExpectedOutput = `${ baseExpectedOutput } `
302
+ + `${ lineBreakDouble } ${ listStart } ${ basePRList [ 3 ] } ${ lineBreak } ${ closedCheckbox } ${ QA } ${ lineBreak } ${ openCheckbox } ${ accessibility } `
303
+ + `${ lineBreakDouble } ${ listStart } ${ basePRList [ 0 ] } ${ lineBreak } ${ closedCheckbox } ${ QA } ${ lineBreak } ${ openCheckbox } ${ accessibility } `
304
+ + `${ lineBreakDouble } ${ listStart } ${ basePRList [ 1 ] } ${ lineBreak } ${ closedCheckbox } ${ QA } ${ lineBreak } ${ openCheckbox } ${ accessibility } ` ;
305
+
306
306
307
307
test ( 'Test no verified PRs' , ( ) => (
308
308
githubUtils . generateStagingDeployCashBody ( tag , basePRList )
0 commit comments