Skip to content

Commit

Permalink
feat(cb2-13178): update type definition package (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
LGin-BJSS authored Aug 20, 2024
1 parent eec74f2 commit 8c47d1f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.549.0",
"@aws-sdk/lib-dynamodb": "^3.549.0",
"@dvsa/cvs-type-definitions": "7.1.0",
"@dvsa/cvs-type-definitions": "7.4.0",
"@smithy/smithy-client": "^2.5.0",
"aws-lambda": "^1.0.7",
"aws-xray-sdk": "^3.6.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/createActivities.unitTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ describe('createActivity', () => {
expect.assertions(1);
return activityService.createActivity(payload).catch((error: HTTPResponse) => {
const body: any = JSON.parse(error.body);
expect(body.error).toEqual('"testStationType" must be one of [atf, gvts, hq, potf]');
expect(body.error).toEqual('"testStationType" must be one of [atf, gvts, hq, potf, vef]');
});
});
});
Expand Down

0 comments on commit 8c47d1f

Please sign in to comment.