export interface CreateTestRequest { /** The name of the test. */ name: string; /** The request object for the test. */ request: Record; /** The expected response object for the test. */ response: Record; /** Indicates whether the test is critical. */ critical: boolean; }