Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): upgrade dev dependencies #1531

Merged
merged 3 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
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
18 changes: 9 additions & 9 deletions package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

240 changes: 120 additions & 120 deletions src/__tests__/__snapshots__/construct-hub.test.ts.snap

Large diffs are not rendered by default.

7 changes: 3 additions & 4 deletions src/__tests__/backend/catalog-builder/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,9 @@ test('json parsing error', async () => {
})
.resolves({ Body: stringToStream('09x{}') });

const expected = new Error(
'Unable to parse catalog file catalog-bucket-name/catalog.json: SyntaxError: Unexpected number in JSON at position 1'
);
return expect(async () => CatalogClient.newClient()).rejects.toEqual(
const expected =
'Unable to parse catalog file catalog-bucket-name/catalog.json: SyntaxError: Unexpected number in JSON at position 1';
return expect(async () => CatalogClient.newClient()).rejects.toThrow(
expected
);
});
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions src/__tests__/backend/deny-list/client.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,10 +90,12 @@ test('s3 object is not a valid json', async () => {
Body: stringToStream('09x{}'),
});

const expected = new Error(
'Unable to parse deny list file deny-list-bucket-name/deny-list.json: SyntaxError: Unexpected number in JSON at position 1'
const expected =
'Unable to parse deny list file deny-list-bucket-name/deny-list.json: SyntaxError: Unexpected number in JSON at position 1';

await expect(async () => DenyListClient.newClient()).rejects.toThrow(
expected
);
await expect(DenyListClient.newClient()).rejects.toEqual(expected);
});

describe('lookup', () => {
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading