Skip to content

Commit

Permalink
AT-10925: revert test package
Browse files Browse the repository at this point in the history
  • Loading branch information
rddimon committed Dec 14, 2023
1 parent 5463274 commit 5215798
Show file tree
Hide file tree
Showing 5 changed files with 161 additions and 6 deletions.
154 changes: 154 additions & 0 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"aws-sdk-client-mock": "^3.0.0",
"chai": "^4.3.10",
"chai-spies": "^1.1.0",
"eslint": "^7.32.0",
Expand Down
8 changes: 4 additions & 4 deletions test/integration-tests/core.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ const testCases = [
testDescription: "Multi tag",
testFolder: `${CONFIGS_FOLDER}/multi-tag`
},
// {
// testDescription: "No basic VPC config",
// testFolder: `${CONFIGS_FOLDER}/only-functions`
// }
{
testDescription: "No basic VPC config",
testFolder: `${CONFIGS_FOLDER}/only-functions`
}
];

describe("Integration Tests", function () {
Expand Down
2 changes: 1 addition & 1 deletion test/integration-tests/utils/aws-ec2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default class EC2Wrap {

constructor (region: string) {
this.client = new EC2Client({
region: region,
region,
retryStrategy: Globals.getRetryStrategy()
});
}
Expand Down
2 changes: 1 addition & 1 deletion test/integration-tests/utils/aws-lambda.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default class LambdaWrap {

constructor (region: string) {
this.client = new LambdaClient({
region: region,
region,
retryStrategy: Globals.getRetryStrategy()
});
}
Expand Down

0 comments on commit 5215798

Please sign in to comment.