diff options
author | Hayleigh Thompson <me@hayleigh.dev> | 2024-03-22 01:42:26 +0000 |
---|---|---|
committer | Hayleigh Thompson <me@hayleigh.dev> | 2024-03-22 01:42:26 +0000 |
commit | e85bc4729a15d9af5af5345151178afe849036ba (patch) | |
tree | cc229a534fff73b6cd0c1ea4b290a12cedb7aa08 /test | |
parent | e9b765a757b610ea970f80e7c0092bf4899acfa6 (diff) | |
download | lustre-e85bc4729a15d9af5af5345151178afe849036ba.tar.gz lustre-e85bc4729a15d9af5af5345151178afe849036ba.zip |
:truck: Move cli code to lustre-labs/dev-tools.
Diffstat (limited to 'test')
-rw-r--r-- | test/lustre_test.gleam | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/lustre_test.gleam b/test/lustre_test.gleam index bae6c0f..9e47a01 100644 --- a/test/lustre_test.gleam +++ b/test/lustre_test.gleam @@ -35,8 +35,8 @@ pub fn counter_init_test() { process.call( runtime, function.curry2(process.send) - |> function.compose(View) - |> function.compose(Debug), + |> function.compose(View) + |> function.compose(Debug), 100, ) @@ -57,8 +57,8 @@ pub fn counter_update_test() { process.call( runtime, function.curry2(process.send) - |> function.compose(View) - |> function.compose(Debug), + |> function.compose(View) + |> function.compose(Debug), 100, ) @@ -75,8 +75,8 @@ pub fn counter_diff_test() { process.call( runtime, function.curry2(process.send) - |> function.compose(View) - |> function.compose(Debug), + |> function.compose(View) + |> function.compose(Debug), 100, ) @@ -88,8 +88,8 @@ pub fn counter_diff_test() { process.call( runtime, function.curry2(process.send) - |> function.compose(View) - |> function.compose(Debug), + |> function.compose(View) + |> function.compose(Debug), 100, ) |