Skip to content

Commit dd6002e

Browse files
committed
twsting
1 parent 457bcd6 commit dd6002e

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

__tests__/ctrf/helpers.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ describe('stripAnsi', () => {
5353
it('returns the same string if no ANSI codes are present', () => {
5454
const normalString = 'Just a normal string'
5555
const result = stripAnsi(normalString)
56-
expect(result).toBe("normalString")
56+
expect(result).toBe(normalString)
5757
})
5858

5959
it('handles empty strings correctly', () => {

badges/coverage.svg

Lines changed: 1 addition & 1 deletion
Loading

dist/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/action-handler.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export async function runAction(): Promise<void> {
1212
const githubContext = getAllGitHubContext()
1313

1414
const report = await prepareReport(inputs, githubContext)
15+
console.log(JSON.stringify(report, null, 2))
1516
await processIntegrations(inputs.integrationsConfig, report)
1617

1718
await handleViewsAndComments(inputs, report)

0 commit comments

Comments
 (0)