Skip to content

Commit 613f63b

Browse files
committed
Fix failing specs
1 parent e19a5b1 commit 613f63b

File tree

1 file changed

+26
-22
lines changed

1 file changed

+26
-22
lines changed
Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
// Jest Snapshot v1, https://goo.gl/fbAQLP
22

33
exports[`renders correctly when \`isFocused\` is false 1`] = `
4-
<Fragment>
5-
<form
6-
className="searchbox"
7-
onSubmit={[Function]}
4+
<form
5+
className="searchbox"
6+
onSubmit={[Function]}
7+
>
8+
<div
9+
className="query-suggestions-wrapper"
810
>
911
<input
1012
className="searchbox__text-input "
@@ -13,20 +15,22 @@ exports[`renders correctly when \`isFocused\` is false 1`] = `
1315
type="text"
1416
value="test"
1517
/>
16-
<input
17-
className="button searchbox__submit"
18-
type="submit"
19-
value="Search"
20-
/>
21-
</form>
22-
</Fragment>
18+
</div>
19+
<input
20+
className="button searchbox__submit"
21+
type="submit"
22+
value="Search"
23+
/>
24+
</form>
2325
`;
2426

2527
exports[`renders correctly when \`isFocused\` is true 1`] = `
26-
<Fragment>
27-
<form
28-
className="searchbox"
29-
onSubmit={[Function]}
28+
<form
29+
className="searchbox"
30+
onSubmit={[Function]}
31+
>
32+
<div
33+
className="query-suggestions-wrapper"
3034
>
3135
<input
3236
className="searchbox__text-input focus"
@@ -35,11 +39,11 @@ exports[`renders correctly when \`isFocused\` is true 1`] = `
3539
type="text"
3640
value="test"
3741
/>
38-
<input
39-
className="button searchbox__submit"
40-
type="submit"
41-
value="Search"
42-
/>
43-
</form>
44-
</Fragment>
42+
</div>
43+
<input
44+
className="button searchbox__submit"
45+
type="submit"
46+
value="Search"
47+
/>
48+
</form>
4549
`;

0 commit comments

Comments
 (0)