Tomasz Grażyński

Results 10 comments of Tomasz Grażyński

Hi @bilucodota. Unfortunately I don't have access to the pem file of this cert, the only way that worked for other tools was to disable SSL.

@bahmutov see https://github.com/TomaszG/code-coverage/tree/master/examples/fullstack (based on one of the examples from this repo). **Repro steps:** 1. Run the app with `npm run dev` 2. Check generated report **Expected result:** HTML and...

As a workaround, I created the following: `test\ui\package.json` ```json { "scripts": { "coverage:report": "cd ../.. && npm run coverage:report" } } ``` and in root package.json ```json { (...) "scripts":...

The solution is to use `sed` command run after build on build output files :) In my project we build the project with `PUBLIC_URL=PUBLIC_URL_PLACEHOLDER` and we replace the PUBLIC_URL_PLACEHOLDER before...

So I managed to get it working (at least in few of my tests) with [wait-until](https://github.com/NoriSte/cypress-wait-until) plugin: ```js cy.waitUntil(() => cy.get('.someSelector') .as('someAlias') .wait(10) // for some reason this is needed,...

Same here. Since the v12 upgrade (I don't recall what the version was, though), we have gotten this on **GitHub Actions CI** sometimes. My initial thought was that it was...

@AtofStryker, great investigation and summary. I can confirm that the error happens only at the beginning of the run for me; I haven't noticed it in the middle. I also...

@AtofStryker I've tried what you've recommended, so I've set CYPRESS_INTERNAL_BROWSER_CONNECT_TIMEOUT=120000 and also used your diagnostic binary based on 13.6.5 and after a couple of runs, it seems that there are...

Personally, I don't, I can live with that :) However, I can imagine a scenario where one has the same spec names in different directories so they will have to...

I think it doesn't work for `portName` attribute too.