Peter Darrow

Results 18 comments of Peter Darrow

@antfu is https://github.com/EvHaus/jest-vs-jasmine sufficient for a reproduction or would you like it to be trimmed down further?

@antfu is there anything that we could do to help move this forward?

@phifa I don't think that's related to this discussion - that's just vitest using as many cores as possible. If you don't want this behaviour, you can turn it off:...

@EvHaus @antfu that's not an apples-to-apples comparison. Jest has fully isolated tests, so setting `isolate: false` is an unfair comparison. And it's clear most devs want their tests isolated.

Speaking from experience, enabling `isolate: false` in a large test suite will cause all sorts of unexpected behaviour and flaky tests. In theory, it's possible, but if you add more...

@reederz (or any others that come across this) - I've written a helper that enables flask-smorest routes decorated with a `@public_docs` decorator to be rendered in a separate OpenAPI spec....

This already exists (on OS X at least). If you look in the bottom left corner when you hit record, there's a 3 second "preroll" count down.

I found a workaround for this. If you're using `pnpm`, add the following to your package.json: ```json "pnpm": { "patchedDependencies": { "@vue/[email protected]": "patches/@[email protected]" } }, ``` Then create a file...