Skip to content

Commit 9f5a868

Browse files
committed
test: remove console logs
1 parent 187d781 commit 9f5a868

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"local-publish": "node ./scripts/verdaccio-publish/index.js",
3535
"test:all": "yarn build:all && jest --passWithNoTests && lerna run test --scope '@aws-sdk/{fetch-http-handler,hash-blob-browser}' && yarn test:versions && yarn test:integration",
3636
"test:ci": "lerna run test --since origin/main",
37-
"test:e2e": "node -e \"console.log(process.env)\" && node ./scripts/turbo test:e2e --env-mode=loose && node ./tests/canary/canary",
37+
"test:e2e": "node ./scripts/turbo test:e2e --env-mode=loose && node ./tests/canary/canary",
3838
"test:e2e:legacy": "cucumber-js --fail-fast",
3939
"test:e2e:legacy:preview": "./tests/e2e-legacy/preview.mjs",
4040
"test:e2e:legacy:since:release": "./tests/e2e-legacy/since-release.mjs",

scripts/turbo/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ const runTurbo = async (task, args, { apiSecret, apiEndpoint, apiSignatureKey }
2323
}),
2424
};
2525

26-
console.log("TURBO ENV", turboEnv);
27-
2826
try {
2927
return await spawnProcess("yarn", command, {
3028
stdio: "inherit",

tests/e2e/get-integ-test-resources.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,10 @@ const { CloudFormationClient, DescribeStackResourcesCommand } = require("@aws-sd
55
const { S3ControlClient, ListMultiRegionAccessPointsCommand } = require("@aws-sdk/client-s3-control");
66
const { ensureTestStack } = require("./ensure-test-stack");
77
const { deleteStaleChangesets } = require("./delete-stale-changesets");
8-
const { loadSharedConfigFiles } = require("@smithy/shared-ini-file-loader");
98

109
exports.getIntegTestResources = async () => {
1110
const region = "us-west-2";
1211

13-
console.log({ files: JSON.stringify(await loadSharedConfigFiles(), null, 2), ENV: process.env });
14-
1512
const cloudformation = new CloudFormationClient({
1613
region,
1714
});

0 commit comments

Comments
 (0)