Fixing failing tests

This commit is contained in:
Federico Builes
2022-06-06 20:32:46 +02:00
parent bccacf9708
commit 06297bf229
4 changed files with 32 additions and 8 deletions
+1 -1
View File
@@ -49,5 +49,5 @@ let rubyChange: Change = {
test('hasInvalidLicenses fails if an unallowed license is found', async () => {
const changes: Changes = [npmChange, rubyChange]
const result = hasInvalidLicenses(changes, ['BSD'], [])
expect(result.length).toBe(1)
expect(result[0]).toBe(npmChange)
})