Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/purl-edge-cases.test.mts
Original file line number Diff line number Diff line change
Expand Up @@ -2221,13 +2221,13 @@ describe('Edge cases and additional coverage', () => {
const result = await purlExists(purl)
// Network call may succeed or fail, but it should not return "Unsupported type"
expect(result.error).not.toBe('Unsupported type: conda')
})
}, 15_000)

it('should dispatch docker type', async () => {
const purl = PackageURL.fromString('pkg:docker/nginx@latest')
const result = await purlExists(purl)
expect(result.error).not.toBe('Unsupported type: docker')
})
}, 15_000)
})

describe('UrlConverter edge cases', () => {
Expand Down
Loading