playwright-slack-report-burak 3.5.2 → 3.5.3
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.
|
@@ -584,7 +584,7 @@ class ResultsParser {
|
|
|
584
584
|
console.log(`Uploading playwright-report to MinIO: ${destination}`);
|
|
585
585
|
// Pass credentials as separate args (not embedded in a URL) to avoid encoding issues.
|
|
586
586
|
execFileSync('mc', ['--config-dir', mcConfigDir, 'alias', 'set', MINIO_ALIAS, MINIO_ENDPOINT, MINIO_ACCESS_KEY, MINIO_SECRET_KEY], { stdio: 'ignore' });
|
|
587
|
-
execFileSync('mc', ['--config-dir', mcConfigDir, 'cp', '--recursive', `${PLAYWRIGHT_REPORT_DIR}/`, `${destination}/`], { stdio: '
|
|
587
|
+
execFileSync('mc', ['--config-dir', mcConfigDir, 'cp', '--recursive', `${PLAYWRIGHT_REPORT_DIR}/`, `${destination}/`], { stdio: 'ignore' });
|
|
588
588
|
console.log(`Successfully uploaded playwright-report to MinIO: ${destination}`);
|
|
589
589
|
} catch (error) {
|
|
590
590
|
console.warn('Warning: Failed to push reports to MinIO. This may not affect the overall process.', error.message);
|
package/package.json
CHANGED