SuiteDefinition import { SuiteDefinition } from "destack:test"; Test suite registration payload. export struct SuiteDefinition { name: string; options: TOptions; body: TBody; labels: [Label]; location: SourceLocation; } language/library/src/test/registry.ds:34:49 Members name: string Suite name. options: TOptions Suite options. body: TBody Suite body. labels: [Label] Labels attached by the registering layer. location: SourceLocation Registration source location when available.