Object that describes a test result (given, must and differences).
const testResult: TestResult<string> = { given: "🟢", must: "🟩", differences: [ { kind: "E", path: ["🟢", "🟩"], lhs: "🟢", rhs: "🟩", } ],};
Object that describes a test result (given, must and differences).
Example