Tim Seckinger

Results 41 comments of Tim Seckinger

Hi @ayshiff and sorry this went under the radar for months. It sounds like you already got quite far and it'd be a shame to lose all this work. I...

> I would also like to add that the problem here is not only "no indication", but also the fact that the test fails This is intended, the test should...

Immediately, I believe this is using Node's native handling mechanism for rejected Promises. However note that this does not mean the test case will be aborted, it will be marked...

Do I understand correctly that using the workaround to force GC runs makes the heap size remain constant? In that case it's not really a memory leak, just v8 deciding...

@javinor For a test file containing a ridiculous number of tests, I'm not sure there's much we can do, we have to keep the test objects around until the test...

Hi, just some random ideas: * You could try installing [watchman](https://facebook.github.io/watchman/docs/install.html) which Jest will use by default if installed and see if that helps * Does it work better with...

Another quick note: I don't know much about serverless or how it's implemented, but in general in my experience making tooling and other things work with PnP is usually making...

Not sure `true` is a good default. As soon as you have one test that needs to retain state, you need to set it to `false` again and change all...

For reasons `bisubus` explained, `restoreMocks` and `resetMocks` can be quite destructive and I don't see them becoming a default. As for `clearMocks`, which is somewhat widely used, while enabling it...