import { z } from "zod"; export const testerMetaSchema = z.object({ passed: z.boolean().describe("true if all e2e checks passed"), }); export type TesterMeta = z.infer;