mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 02:11:05 +00:00
test(fluid-form): add unit tests
This commit is contained in:
parent
37a1ab30cf
commit
823a8f69dc
3 changed files with 85 additions and 17 deletions
27
tests/FluidForm/FluidForm.test.svelte
Normal file
27
tests/FluidForm/FluidForm.test.svelte
Normal file
|
@ -0,0 +1,27 @@
|
|||
<script lang="ts">
|
||||
import {
|
||||
FluidForm,
|
||||
FormGroup,
|
||||
Checkbox,
|
||||
Button,
|
||||
} from "carbon-components-svelte";
|
||||
|
||||
export let preventDefault = false;
|
||||
</script>
|
||||
|
||||
<FluidForm
|
||||
data-testid="fluid-form"
|
||||
on:submit={(e) => {
|
||||
if (preventDefault) {
|
||||
e.preventDefault();
|
||||
}
|
||||
console.log("submit", e);
|
||||
}}
|
||||
>
|
||||
<FormGroup legendText="Checkboxes">
|
||||
<Checkbox id="checkbox-0" labelText="Checkbox Label" checked />
|
||||
<Checkbox id="checkbox-1" labelText="Checkbox Label" />
|
||||
<Checkbox id="checkbox-2" labelText="Checkbox Label" disabled />
|
||||
</FormGroup>
|
||||
<Button type="submit">Submit</Button>
|
||||
</FluidForm>
|
Loading…
Add table
Add a link
Reference in a new issue