Jonathan Gelin

Results 30 comments of Jonathan Gelin

Same here, trying to attach screenshots to the Test object provided to [mocha-junit-reporter](https://github.com/michaelleeallen/mocha-junit-reporter) but impossible to configure attachments as it is [described here](https://github.com/michaelleeallen/mocha-junit-reporter#attachments): ![image](https://user-images.githubusercontent.com/954509/191182854-8bd108be-1145-414f-b480-0cc2e5e7fdc1.png)

@Dj-Viking @Scott-Fischer Same here. Spent a lot of time trying to sync the source map with the coverage and I had the same conclusion: sourcemap isn't in sync with the...

Interesting, I had to fix this path because of this function. I am running tests on multiple machines/VM (parallel) and the absolute path of each file is an issue when...

@Scott-Fischer I am using `typescript` (Angular templates) instrumenting with `babel-plugin-istanbul` + `webpack` too But I was explaining that, because of the `fixSourcePaths` function that is setting the absolute path, I...

For Nx Users, this approach could be used too: ```json "targets": { ... "orval": { "executor": "@nrwl/workspace:run-commands", "outputs": ["libs/my-app/core/api/src/lib/*/generated"], "options": { "commands": ["npx orval --config libs/my-app/core/api/orval.config.js"] } } }, ```...

Yop, Do you have a sample with an `app-shell` provided by angular ?

Just initializing the `window.__coverage__` in my visit command solves the issue. In fact, the reference of the object is kept by cypress

We also had that issue with [Monaco Editor](https://github.com/microsoft/monaco-editor) because it is using `ResizeObserver` internally. To fix it, we patched the original API by doing: ```typescript class CalmResizeObserver extends ResizeObserver {...

If I remove it, indeed it works... Yes it was the case, like I said in the #6, I am doing that with other libraries and it works... So I...

Hi @DDeis, I am sorry but I can't help you. I did not solve this issue...