Declare a Phoenix eval test suite.
Suite name; doubles as the dataset / experiment name on Phoenix.
Suite body that declares its test / it cases.
Optionalconfig: SuiteConfigOptional suite-level config (dataset name, repetitions, dry-run, acceptance criteria).
Run only this suite, skipping all sibling suites
(matches the runner's describe.only).
Suite name; doubles as the dataset / experiment name on Phoenix.
Suite body that declares its test / it cases.
Optionalconfig: SuiteConfigOptional suite-level config.
Skip this suite entirely (matches the runner's describe.skip). No dataset
or experiment is created on Phoenix.
Suite name; doubles as the dataset / experiment name on Phoenix.
Suite body (not executed).
Optionalconfig: SuiteConfigOptional suite-level config.
Declare Phoenix eval test suites.
Drop-in replacement for the test runner's own
describe. The suite name doubles as the dataset and experiment name on the Phoenix server, and the optional SuiteConfig controls dataset naming, repetitions, dry-run mode, and CI acceptance criteria.Example