Rezi
    Preparing search index...

    Function runReproReplayHarness

    • Replay a bundle headlessly and assert action sequence + optional invariants.

      Returns PASS/FAIL with stable mismatch diagnostics and JSON-path anchors.

      Returns Promise<
          Readonly<
              {
                  mismatches: readonly Readonly<
                      {
                          actual?: unknown;
                          code: ReproReplayMismatchCode;
                          detail: string;
                          expected?: unknown;
                          path: string;
                      },
                  >[];
                  pass: boolean;
                  replay: ReproReplayRunResult;
                  status: "PASS"
                  | "FAIL";
              },
          >,
      >