Asım Tahir
Results
3
comments of
Asım Tahir
I think #3403 fixes this. #### Workaround for [`jest`](https://jestjs.io/) ```js beforeAll(() => { HTMLDialogElement.prototype.show = jest.fn(); HTMLDialogElement.prototype.showModal = jest.fn(); HTMLDialogElement.prototype.close = jest.fn(); }); ``` #### Workaround for [`vitest`](https://vitest.dev/) ```js beforeAll(()...
Yep, I was previously trying to debug the `drawflow.js` file by including it in the source code, but this solution was not sustainable to me. Because I have to revert...