Skip to content

Commit 8b64ab3

Browse files
Manuel Sommerhaldermdauner
authored andcommitted
feat(choice): update snapshots for tests
1 parent cd13739 commit 8b64ab3

File tree

1 file changed

+8
-14
lines changed

1 file changed

+8
-14
lines changed

tests/Form/__snapshots__/Form.spec.js.snap

Lines changed: 8 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ exports[`Form matches snapshot 1`] = `
5555
class="field"
5656
>
5757
<input
58-
id="macos"
58+
id="os-macos"
5959
name="os"
6060
type="checkbox"
6161
/>
@@ -67,7 +67,7 @@ exports[`Form matches snapshot 1`] = `
6767
</label>
6868
6969
<input
70-
id="linux"
70+
id="os-linux"
7171
name="os"
7272
type="checkbox"
7373
/>
@@ -79,7 +79,7 @@ exports[`Form matches snapshot 1`] = `
7979
</label>
8080
8181
<input
82-
id="windows"
82+
id="os-windows"
8383
name="os"
8484
type="checkbox"
8585
/>
@@ -105,10 +105,7 @@ exports[`Form matches snapshot 1`] = `
105105
exports[`Form onSubmit event returns values, resetForm, setSubmitting 1`] = `
106106
Object {
107107
"language": "svelte",
108-
"os": Array [
109-
"macos",
110-
"windows",
111-
],
108+
"os": Array [],
112109
"user": Object {
113110
"email": "test@user.com",
114111
},
@@ -118,10 +115,7 @@ Object {
118115
exports[`Form onSubmit event returns values, resetForm, setSubmitting 2`] = `
119116
Object {
120117
"language": "svelte",
121-
"os": Array [
122-
"macos",
123-
"windows",
124-
],
118+
"os": Array [],
125119
"user": Object {
126120
"email": "test@user.com",
127121
},
@@ -222,7 +216,7 @@ exports[`Form shows error message when schema is defined 1`] = `
222216
class="field"
223217
>
224218
<input
225-
id="macos"
219+
id="os-macos"
226220
name="os"
227221
type="checkbox"
228222
/>
@@ -234,7 +228,7 @@ exports[`Form shows error message when schema is defined 1`] = `
234228
</label>
235229
236230
<input
237-
id="linux"
231+
id="os-linux"
238232
name="os"
239233
type="checkbox"
240234
/>
@@ -246,7 +240,7 @@ exports[`Form shows error message when schema is defined 1`] = `
246240
</label>
247241
248242
<input
249-
id="windows"
243+
id="os-windows"
250244
name="os"
251245
type="checkbox"
252246
/>

0 commit comments

Comments
 (0)