performance upgrade
Build and Bundle Gleam App / format (push) Successful in 16s
Build and Bundle Gleam App / build-linux-binaries (push) Failing after 19s

This commit is contained in:
2026-09-05 20:36:15 +02:00
parent 5abf085870
commit 127a589881
3 changed files with 82 additions and 49 deletions
+9
View File
@@ -1,4 +1,6 @@
import gleeunit
import helpers
import luma_markdown
pub fn main() -> Nil {
gleeunit.main()
@@ -11,3 +13,10 @@ pub fn hello_world_test() {
assert greeting == "Hello, Joe!"
}
pub fn renders_plain_and_marked_lines_test() {
let information = helpers.Information(1, 1)
assert luma_markdown.luma_markdown(information, " plain text \n!2 marked")
== "plain text\n**marked"
}