-
I'm migrating color-space to uvu, there are many suites in one test.
Is there an easy way to run only single suite?
-
CUANDO SE COMENTE PARA PARTICIPAR DEBÉIS DECIR DESDE QUE COMITÉ VENÍS
NO TOCAR LOS TICKS, **SOLO PERSONAS AUTORIZADAS**
Comités necesarios:
- [x] PROGRAMA
- [x] LOGÍSTICA
- [x] COMUNICACIÓN…
-
With jest it's easy to control the timeout ie`jest.setTimeout(5000)`.
Any chance you could implement such a thing ?
Really enjoy uvu so far !
-
I find this flag in mocha to be incredibly useful:
```bash
npm test -- -g "some test description"
```
What do you think about having something similar in uvu?
-
When importing an extension-less path, I'd like for `file-extension-in-import` to check if the path exists in the target package's exports map. If it exists, it should not error.
eg.
```
import *…
-
You folks have an amazing test runner.
I wonder if `uvu` can support multi-threading using [`tinypool`](https://github.com/Aslemammad/tinypool) (fork of piscina)!
It'd be good if we get this!
-
Hi folks
I've been trying to integrate `uvu` and `react-testing-library` into my team's tech stack. FYI, I can't use Jest because of the infamous `Unexpected token 'export'` in one of my dependenc…
-
We can mention PostCSS and Browserslist in docs to prove that this project was used by big tools and can be trusted
-
Is there a reason hook errors aren't exposed to the user? We go straight from `try` to `finally`:
https://github.com/lukeed/uvu/blob/e419ff993b03094d61c2a29a3c8874b1dea929e1/src/index.js#L88
-
Thanks for the nice lib! Just started using it and found a bug:
```js
test('example', () => new Promise((resolve, reject) => {
reject()
})
test('example', () => new Promise((resolve, reject…