Erik Blomqvist
Erik Blomqvist
> While this is a possible approach, it's not one that _I_ personally would suggest or want to promote. SQLite is a great file and in memory database, but it...
> The testing documentation could benefit from additional guidance, especially for those with little to no experience in testing. However, for more experienced users, these changes might not be as...
I recently spent a lot of effort trying to use an ES module in a NestJS application. This would have saved me a bunch of time. One thing I would...
I spent most of yesterday figuring out how to get my e2e tests working. The documentation really wasn't very helpful. The auto-generated e2e test imports the app module in the...
> A worker process has failed to exit gracefully and has been force exited. This is likely caused by tests leaking due to improper teardown. Try running with --detectOpenHandles to...
Actually, having more than one test file seems to be a workaround, as jest is able to pass the test execution even if individual test processes fail. In a subsequent...
If you have multiple tests in the same file and you are creating a new app in `beforeEach` and closing it in `afterEach`, the second test will not be able...