Fix E2E test report upload URL (#2776)

* Fix E2E test report upload URL
This commit is contained in:
mvitale1989
2023-06-28 20:20:03 +02:00
committed by GitHub
parent 3f352a6718
commit 1da06bcf23

View File

@@ -51,7 +51,7 @@ async function saveArtifacts() {
filesToUpload, filesToUpload,
10, 10,
async.asyncify(async (file) => { async.asyncify(async (file) => {
const Key = file.replace(uploadPath, s3Folder); const Key = file.replace(uploadPath, s3Folder).replaceAll('\\', '/');
const contentType = mime.lookup(file); const contentType = mime.lookup(file);
const charset = mime.charset(contentType); const charset = mime.charset(contentType);