Michał Drobniak

Results 7 comments of Michał Drobniak

So glad to see this PR being resurrected 🎉 this bug is a pain in the ass 😄 I understand that `maintenance-crew` need to take a look at this and...

I fixed too long commit message, it should pass the lint now

@MoLow you are right, there can be negative performance implications when using `--test-name-pattern` flag since we must do additional regexp matching for all not matching tests. I can try to...

I experimented with benchmarking test runner with [mitata](https://github.com/evanwashere/mitata) package. It repeats many times the operation and does the measurements Here is the test suite repeated 1000 times ```js const {describe,...

@MoLow what do you think about the benchmark results?

@MoLow why do you consider it a major (breaking) change? 🤔 it rather won't affect current usages of `--test-name-pattern` but adds support for matching single test by prefixing with all...

I currently mitigate it with [structuredClone](https://developer.mozilla.org/en-US/docs/Web/API/structuredClone) ```js const knex = require('knex'); const db = knex({ ...structuredClone(config.get('postgres')), client: 'pg', }); ```