Ghostblad3

Results 6 comments of Ghostblad3

> Here's a clean and working solution: > > Separate the TableHead and the TableBody and add toggle (or other) buttons as required. > > Sample implementation with Search Bar...

> > https://codesandbox.io/p/devbox/zealous-firefly-8vm5y2?file=%2Fsrc%2Fmain.tsx%3A91%2C19 > > Could you possibly add the relevant code to this thread? Your link doesn't work for me ```ts import * as React from 'react' import {...

Hello there. One of the biggest issues of Jest is that it reads all the necessary modules for each test but does not cache them during runtime. In front-end development...

@9aoy Thank you! Could you elaborate why modules should not be shared between tests due to isolation? Modules are static, they never change. If X components uses a Material UI...

@9aoy Does isolate: true will cache all modules loaded for each test so that they are not re-read from disk after a test finish and another one start?

Bun's test runner needs a lot of work. Especially for dom testing. A lot of stuff do not work. Without isolation it is unusable in the dom.