deno testdeno test and all my puppeteer tests in all files would run in series.deno testdeno test the test runner only goes through 1 file. I have to comment out other files completely or delete them for more than 1 file's tests to go. I resorted to throwing all my tests into a single file, but that's really messy so i'm looking for a proper solution.Deno.testDeno.test in my code instead of describedescribe and itit that I can use the VSCode test runner. However, the test runner breaks if my code uses the library zodzod. No error messages, it just doesn't run the test. It took a very long time to figure out Zod was the issue, but after much trial and error I'm 100% sure of it.deno testdeno test or the VSCode test runner. Can I please get help with one or both of these issues so that I can run all my tests?
Join the Discord to continue the conversation