Declan Whelan
Declan Whelan
I am working on #1871 and the root cause was non-unique ids for the SVG markers. And the fix for it was exactly what you suggested.
Yes @williamthome, I believe this is root cause of what you saw with https://github.com/livebook-dev/livebook/issues/1440. I do not have an ETA on getting that merged but will respond here when it...
```mermaid flowchart subgraph AA A1 A2 end EXT --> |Ref to within Subgraph|A1 AA --> |Self-ref Subgraph|AA ``` Seems to work now. I think this can be closed.
It works with `graph` now in `develop` branch: I believe this could be closed on the next release after `9.1.7`. Below is how it is rendered `9.1.7` or earlier: ```mermaid...
Hey @elliot-nelson have you tried `yarn run e2e-upd`? I have not but I suspect it might allow you to `... run an e2e command to update snapshots if they are...
Would it be help to offload some e2e tests into jest DOM tests?
That is all awesome to hear!
**_Updating this comment because vitest addresses this in a much better way._** -------------- I have what I think could be important. I was able to get jest unit tests working...
I had a look at the new `vitest` and I love it! vitest looks like a great choice **_and_** it removes all the jest/ESM module loading issues that have been...
So, with `vitest` we now have the ability to move some tests from Cypress to vitest. Here are some opportunities that I see: - focus e2e tests and reduce size...