CenFun

Results 91 comments of CenFun

> delete all the files from the monocart reporter output dir that aren't a zip I don't think it's necessary to remove all those files, just ignore it if you...

how about this approach ```js const monocartOptions: MonocartReporterOptions = { name: "Playground app for @ln/ngx-module-federation-tools", outputFile: "./something-else-dir-do-not-output-to-test-reporters/monocart-report.html", // zip for upload as artifact zip: "./test-reporters/playwright/monocart-reporter/monocart-report.zip", ... } ```

Actually, you can set `outputFile` dynamically just like `zip` with `isShardedTestRun` ```js const outputFile:string = isShardedTestRun ? path.resolve("path-to/a-ignored-dir", "monocart-report.html") : path.resolve(monocartReporterOutputDir, "monocart-report.html"); ``` Anyway, I have added new `Object` options...

I'm not quite clear on what specific support you expect, but the current options already cover the situation you mentioned. ``` { zip: { outputFile: path.resolve(monocartReporterOutputDir, `monocart-report-${your-shard-number}.zip`), clean: true }...

It seems it's a issue from transpiled decorator code. The first decorator could never be covered. ![image](https://github.com/user-attachments/assets/683a6c70-694d-40a0-accc-a783890d78c0) After checking the transpiled code coverage, the first property indeed has not been...

First, you must upload all files to S3, including all attachments such as images and videos. If you are opening the index.html file directly from an email, you have to...

I don't know why you create your own custom report `./src/test-report-scripts/custom-monocart-reporter.ts`, but please reconsider and try my approach. ```js // this folder include all attachments and html report const outputDir...

try env `FORCE_COLOR=true` for example Github Actions ```yaml - run: npm run test env: FORCE_COLOR: true ```

Yes, I'm interested in what it will look like after the conversion., please go on.