shlogg · Early preview
Paul Redmond @paulredmond

Pest 3.5 Released With Nested Describe Blocks Support

Pest v3.5 released with nested `describe()` blocks in tests! Group related tests inside a parent `describe()` block for more flexibility in organizing things. Update to latest version for new features and nested describe blocks!

Pest released v3.5 with support for nested describe() blocks in tests! You can now group related tests inside a parent describe() block, giving you more flexibility in organizing things.
big news: just dropped pest 3.5.0, and it now supports nested describe blocks. happy tuesday, let's go! 🤌🏻 pic.twitter.com/AN2IRJL0pW— Nuno Maduro ☁️ 🦹 (@enunomaduro) October 22, 2024 
Before this release, you could use the describe() block for group tests; however, you could only do so at the top level of your test file. For example, lets say you want to group all your admin dashboard feature tests togethe...