humanish 0.67.0 → 0.69.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/run.js CHANGED
@@ -146,8 +146,11 @@ export function formatParticipantOutcomes(outcomes) {
146
146
  parts.push(`${outcomes.abandoned} gave up`);
147
147
  if (outcomes.ranOut > 0)
148
148
  parts.push(`${outcomes.ranOut} ran out of session`);
149
+ // "blocked" covers an approval the run could not give AND a blocker the participant reported in
150
+ // its own words (#476); the old "on an approval" read wrongly on a keyboard-first participant who
151
+ // wrote "Blocked before diagram creation" about a mouse-only modal.
149
152
  if (outcomes.blocked > 0)
150
- parts.push(`${outcomes.blocked} blocked on an approval`);
153
+ parts.push(`${outcomes.blocked} blocked`);
151
154
  if (outcomes.harnessFailed > 0)
152
155
  parts.push(`${outcomes.harnessFailed} lost to a harness failure`);
153
156
  // Last, and separate, because it cuts across the outcomes rather than partitioning them: someone