slnodejs 6.1.1091 → 6.1.1101
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/package.json +1 -1
- package/tsOutputs/api.js +1 -1
package/package.json
CHANGED
package/tsOutputs/api.js
CHANGED
|
@@ -51,7 +51,7 @@ function cliArgsToAgentConfig(cliArgs) {
|
|
|
51
51
|
if (!tokenData.isValid) {
|
|
52
52
|
throw new Error('Token is not valid');
|
|
53
53
|
}
|
|
54
|
-
const httpConfig = Object.assign(Object.assign({}, tokenData), { proxy: cliArgs.proxy });
|
|
54
|
+
const httpConfig = Object.assign(Object.assign({ testProjectId: cliArgs.testProjectId, targetTestProjectId: cliArgs.targetTestProjectId }, tokenData), { proxy: cliArgs.proxy });
|
|
55
55
|
const backendProxy = backend_proxy_with_default_client_1.BackendProxyFactory.initWithDefaultClient(agent_instance_data_1.AgentInstanceDataFactory.getOrCreateAgentInstanceData(), httpConfig, logger);
|
|
56
56
|
const buildSessionData = yield new test_runner_build_session_data_builder_1.TestRunnerBuildSessionDataBuilder(backendProxy).build(cliArgs);
|
|
57
57
|
if (!buildSessionData) {
|