transit-core-taf 1.0.18 → 1.0.19
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.
|
@@ -17,6 +17,10 @@ class TestRailReporter {
|
|
|
17
17
|
}
|
|
18
18
|
async onEnd(result) {
|
|
19
19
|
console.log(`Run finished with status: ${result.status}`);
|
|
20
|
+
if (process.env.EXEC_ENVIRONMENT !== 'remote') {
|
|
21
|
+
console.log('Skipping TestRail results upload for non-remote execution.');
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
20
24
|
// Find the JUnit reporter's output file path from the Playwright config
|
|
21
25
|
const junitReporter = this.getJunitReporter(this.config);
|
|
22
26
|
if (!junitReporter) {
|