pull in new version of railroad library, and make a one-line change to print exclusively tests that have failed (because terminal output is noisy otherwise)

This commit is contained in:
2024-12-17 09:49:07 +00:00
parent fa723f27fa
commit 24cdea7da3
2 changed files with 2 additions and 3 deletions

View File

@@ -528,7 +528,6 @@ val kMove = describe "move motion 'k'"
val ({cursorIdx, ...}, _) = AppUpdate.update (app, CHAR_EVENT #"k")
(* assert *)
val _ = print ("cursorIdx: " ^ Int.toString cursorIdx ^ "\n")
val isSkipped = cursorIdx = 0
in
Expect.isTrue isSkipped
@@ -1809,4 +1808,4 @@ val tests = concat
, percentMove
]
val _ = run tests
val _ = runWithConfig [Configuration.PrintPassed false] tests