@aws-cdk/integ-runner 2.197.10 → 2.197.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/THIRD_PARTY_LICENSES +599 -0
- package/lib/cli.d.ts +2 -0
- package/lib/cli.d.ts.map +1 -1
- package/lib/cli.js +9 -1
- package/lib/engines/proxy-agent.d.ts +37 -0
- package/lib/engines/proxy-agent.d.ts.map +1 -0
- package/lib/engines/proxy-agent.js +57 -0
- package/lib/engines/toolkit-lib.d.ts +34 -2
- package/lib/engines/toolkit-lib.d.ts.map +1 -1
- package/lib/engines/toolkit-lib.js +27 -13
- package/lib/index.js +13 -5
- package/lib/runner/engine.d.ts.map +1 -1
- package/lib/runner/engine.js +3 -1
- package/lib/runner/runner-base.d.ts +12 -0
- package/lib/runner/runner-base.d.ts.map +1 -1
- package/lib/runner/runner-base.js +1 -1
- package/lib/workers/common.d.ts +12 -0
- package/lib/workers/common.d.ts.map +1 -1
- package/lib/workers/common.js +1 -1
- package/lib/workers/extract/extract_worker.d.ts.map +1 -1
- package/lib/workers/extract/extract_worker.js +5 -1
- package/lib/workers/extract/index.js +29412 -1304
- package/lib/workers/integ-test-worker.d.ts.map +1 -1
- package/lib/workers/integ-test-worker.js +3 -1
- package/lib/workers/integ-watch-worker.d.ts +2 -0
- package/lib/workers/integ-watch-worker.d.ts.map +1 -1
- package/lib/workers/integ-watch-worker.js +1 -1
- package/package.json +7 -6
package/README.md
CHANGED
|
@@ -112,6 +112,12 @@ If not, changes cannot be compared across systems and the [update workflow](#upd
|
|
|
112
112
|
Keep generated snapshots when differences exist in snapshot comparisons.
|
|
113
113
|
- `--max-workers` (default=`16`)
|
|
114
114
|
The max number of workerpool workers to use when running integration tests concurrently.
|
|
115
|
+
- `--proxy`
|
|
116
|
+
Use the indicated proxy for all AWS API calls. If not specified, proxy settings are auto-detected
|
|
117
|
+
from `HTTPS_PROXY` / `HTTP_PROXY` environment variables.
|
|
118
|
+
- `--ca-bundle-path`
|
|
119
|
+
Path to a PEM certificate bundle to use when validating HTTPS requests. If not specified,
|
|
120
|
+
reads from the `AWS_CA_BUNDLE` environment variable.
|
|
115
121
|
|
|
116
122
|
Example:
|
|
117
123
|
|