We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b83b845 commit 2bbee5eCopy full SHA for 2bbee5e
1 file changed
test/unit/server/utils/dependency-analysis.spec.ts
@@ -76,6 +76,10 @@ describe('dependency-analysis', () => {
76
})
77
78
it('tracks failed queries when OSV batch API fails', async () => {
79
+ // Suppress expected console output from error path
80
+ vi.spyOn(console, 'warn').mockImplementation(() => {})
81
+ vi.spyOn(console, 'error').mockImplementation(() => {})
82
+
83
const mockResolved = new Map([
84
[
85
'test-pkg@1.0.0',
0 commit comments