Smrtnyk
Smrtnyk
> What needs to happen to get this over the finish line? I guess @SimenB has some doubts about this?
any plan for this?
I am facing same issues occasionally with HMR not working when changing something in template using ts + script setup It happens when I change color of the q-btn for...
Vue has fixed some stuff regarding hmr in latest release https://github.com/vuejs/vue-next/blob/master/CHANGELOG.md not sure if it is something that relates to issues we have mentioned here
if you are using quasar cli you don't, you wait for quasar to upgrade you can add the dependency manually to your package.json but I wouldn't go using that route
This has nothing to do with swc, its jest issue you need to spy on LocalStorage.prototype
also mockReturnvalue is a setter, not sure if that will return anything
I think its due to fact that modern timers use sinon fake timers and jest does not see it as proper mock where legacy timers were created by jest, but...
Hi, any update on future of this, will this PR get adopted in the future? We have thousands of tests at the company where I work and some of them...
you can do it also yourself ```ts (async () => { const deps = await madge("", CONFIG).then((res) => res.circular()); console.log(`Detected ${deps.length} circular deps.`); console.log(util.inspect(deps.map(formatCircularItem))); if (deps.length > ALLOWED_CIRCULAR_DEPS) { console.error("Detected...