Skip to content

Commit

Permalink
Intergation tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TatianaFomina committed Dec 7, 2024
1 parent d769334 commit 0565045
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions test/integration/cases/billing/fail.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ describe('Fail webhook', () => {
payload: {
workspaceId: workspace._id,
amount: 200,
currency: 'USD',
userId: user._id,
cardPan: '5367',
},
Expand Down
1 change: 1 addition & 0 deletions test/integration/cases/billing/pay.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ describe('Pay webhook', () => {
payload: {
workspaceId: new ObjectId(),
amount: 10,
currency: 'USD',
userId: user._id,
cardPan: '2456',
},
Expand Down
5 changes: 4 additions & 1 deletion test/integration/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@
// "emitDecoratorMetadata": true, /* Enables experimental support for emitting type metadata for decorators. */

/* Advanced Options */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */
"forceConsistentCasingInFileNames": true /* Disallow inconsistently-cased references to the same file. */,
"typeRoots": [
"./types/global.d.ts"
],
}
}

0 comments on commit 0565045

Please sign in to comment.