aboutsummaryrefslogtreecommitdiff
path: root/test/apps
diff options
context:
space:
mode:
authorHayleigh Thompson <me@hayleigh.dev>2024-03-14 06:46:46 +0100
committerHayleigh Thompson <me@hayleigh.dev>2024-03-14 06:47:00 +0100
commitb53ab020043985de63e81c04cee7f69ee08c7e18 (patch)
treed42bd7ae1fe509f4e0f61707cf1060f03365b6c2 /test/apps
parente689c185024783c72952ed00283f82b8e585133a (diff)
downloadlustre-b53ab020043985de63e81c04cee7f69ee08c7e18.tar.gz
lustre-b53ab020043985de63e81c04cee7f69ee08c7e18.zip
:alembic: Update tests to handle correct boolean attribute output.
Diffstat (limited to 'test/apps')
-rw-r--r--test/apps/static.gleam5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/apps/static.gleam b/test/apps/static.gleam
index d41964a..5c6ca05 100644
--- a/test/apps/static.gleam
+++ b/test/apps/static.gleam
@@ -1,8 +1,8 @@
// IMPORTS ---------------------------------------------------------------------
-import lustre/attribute.{src}
+import lustre/attribute.{disabled, src}
import lustre/element.{text}
-import lustre/element/html.{body, h1, head, html, img, title}
+import lustre/element/html.{body, h1, head, html, img, input, title}
// VIEW ------------------------------------------------------------------------
@@ -11,6 +11,7 @@ pub fn view() {
head([], [title([], "Hello, World!")]),
body([], [
h1([], [text("Hello, World!")]),
+ input([disabled(True)]),
img([src("https://source.unsplash.com/random")]),
]),
])