From 364bd86c0578ccfed661cfcbda7764c6aa518fd7 Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Wed, 2 Feb 2022 20:11:14 -0800 Subject: [PATCH] test(text-input): assert input, change events --- tests/TextInput.test.svelte | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/TextInput.test.svelte b/tests/TextInput.test.svelte index 790b71d1..9489b8ad 100644 --- a/tests/TextInput.test.svelte +++ b/tests/TextInput.test.svelte @@ -9,6 +9,8 @@ labelText="User name" placeholder="Enter user name..." bind:value + on:input="{(e) => console.log(e.detail)}" + on:change="{(e) => (value = e.detail)}" />