log another exception-throwing test

This commit is contained in:
2025-08-04 10:59:01 +01:00
parent 229bf59f5d
commit b7cdbfbe02
2 changed files with 13 additions and 3 deletions

View File

@@ -33,6 +33,6 @@ struct
val () = TextIO.output (io, textOutput) val () = TextIO.output (io, textOutput)
val () = TextIO.closeOut io val () = TextIO.closeOut io
in in
raise Empty raise e
end end
end end

View File

@@ -43,12 +43,22 @@ struct
let let
val app = appFromText initialText val app = appFromText initialText
val history = "G12dk" val history = "G12dk"
val history = "100G55dkz33dk"
val newApp = applyChars (history, app) val newApp = applyChars (history, app)
in in
(* just expect that we do not fail or throw an exception *) (* just expect that we do not fail or throw an exception *)
Expect.isTrue true Expect.isTrue true
end)] end),
test "idk yet" (fn _ =>
let
val app = appFromText initialText
val history = "16G18ddjjjjjjjjjdkdkdkjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj"
val newApp = applyChars (history, app)
in
Expect.isTrue true
end
)
]
val tests = [charEventTests] val tests = [charEventTests]
end end