Skip to content

Commit 2e09eb0

Browse files
committed
remove console.log
1 parent 407bc84 commit 2e09eb0

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

.github/actions/find/tests/findForUrl.test.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,7 @@ vi.mock('playwright', () => ({
2626

2727
vi.mock('@axe-core/playwright', () => {
2828
const AxeBuilderMock = vi.fn()
29-
AxeBuilderMock.prototype.analyze = vi.fn(() => {
30-
console.log('calling mock analyze')
31-
return Promise.resolve({violations: []} as unknown as axe.AxeResults)
32-
})
29+
AxeBuilderMock.prototype.analyze = vi.fn(() => Promise.resolve({violations: []} as unknown as axe.AxeResults))
3330
return {default: AxeBuilderMock}
3431
})
3532

0 commit comments

Comments
 (0)