We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 407bc84 commit 2e09eb0Copy full SHA for 2e09eb0
1 file changed
.github/actions/find/tests/findForUrl.test.ts
@@ -26,10 +26,7 @@ vi.mock('playwright', () => ({
26
27
vi.mock('@axe-core/playwright', () => {
28
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
- })
+ AxeBuilderMock.prototype.analyze = vi.fn(() => Promise.resolve({violations: []} as unknown as axe.AxeResults))
33
return {default: AxeBuilderMock}
34
})
35
0 commit comments