Xavier F. Gouchet
02/20/2024, 10:02 AMDescribeSpecenabledIfFreeSpecdescribeit"should do something".config(enabledIf = { … }) {
  // test here
}Xavier F. Gouchet
02/20/2024, 10:03 AMfun describe(name: String, test: suspend DescribeSpecContainerScope.() -> Unit) {
      addContainer(
         TestName("Describe: ", name, false),
         disabled = false,
         null // <-- this should be where the enabled is passed 
      ) { DescribeSpecContainerScope(this).test() }
   }dave08
02/27/2024, 10:17 AMif(...) {...}Xavier F. Gouchet
02/28/2024, 4:04 PMdave08
02/29/2024, 10:37 AMdave08
02/29/2024, 10:38 AMshould(...).config(...) { }test(...)..Xavier F. Gouchet
02/29/2024, 1:14 PM