From e2e26b36df3ecafef66ecc6d78826a4c2a0dcf04 Mon Sep 17 00:00:00 2001 From: KobeNguyenT <7845001+kobenguyent@users.noreply.github.com> Date: Tue, 5 Dec 2023 14:01:58 +0100 Subject: [PATCH] fix: expose process.env.TESTRAIL_RUN_URL (#106) --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 871e748..1da6d5c 100644 --- a/index.js +++ b/index.js @@ -275,6 +275,7 @@ module.exports = (config) => { runId = config.runId; } else { const res = await _addTestRun(config.projectId, suiteId, runName); + process.env.TESTRAIL_RUN_URL = res.url; runId = res.id; }