Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
Signed-off-by: Matteo Collina <hello@matteocollina.com>
  • Loading branch information
mcollina committed Jan 30, 2024
1 parent 057692f commit 059613f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/reporters.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ describe('MarkdownReporter', async () => {
output += chunk
}

strictEqual(output.replace('\\', '/'), `# Summary
strictEqual(output.replaceAll('\\', '/'), `# Summary
## test/add.test.ts
### :white_check_mark: Pass
* __add__, duration 100ms, line 1
Expand Down Expand Up @@ -98,7 +98,7 @@ describe('MarkdownReporter', async () => {
output += chunk
}

strictEqual(output.replace('\\', '/'), `# Summary
strictEqual(output.replaceAll('\\', '/'), `# Summary
## test/add.test.ts
### :white_check_mark: Pass
* __add__, duration 100ms, line 1
Expand Down Expand Up @@ -164,6 +164,6 @@ describe('GithubWorkflowFailuresReporter', async () => {
'::error file=test/add.test.ts,line=10::add3\n'
].join('')

strictEqual(output.replace('\\', '/'), expected)
strictEqual(output.replaceAll('\\', '/'), expected)
})
})

0 comments on commit 059613f

Please sign in to comment.