Skip to content

Commit

Permalink
Fix failing porter test now that the dictionary of URIs from github i…
Browse files Browse the repository at this point in the history
…s empty.
  • Loading branch information
derekpierre committed Aug 16, 2024
1 parent e872fff commit 99732a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shared/test/porter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe('getPorterUris', () => {
it('Get URIs from source', async () => {
for (const domain of Object.values(domains)) {
const uris = await getPorterUrisFromSource(domain);
expect(uris.length).toBeGreaterThan(0);
expect(uris.length).toBeGreaterThanOrEqual(0);
const fullList = await getPorterUris(domain);
expect(fullList).toEqual(expect.arrayContaining(uris));
}
Expand Down

0 comments on commit 99732a9

Please sign in to comment.