You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
1.4 KiB
81 lines
1.4 KiB
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Search should show cross icon when input value exists 1`] = `
|
|
<Search
|
|
placeholder=""
|
|
value=""
|
|
>
|
|
<div>
|
|
<Input
|
|
disabled={false}
|
|
onChange={[Function]}
|
|
placeholder=""
|
|
prefixCls="ant-input"
|
|
type="text"
|
|
value=""
|
|
>
|
|
<input
|
|
className="ant-input"
|
|
disabled={false}
|
|
onChange={[Function]}
|
|
onKeyDown={[Function]}
|
|
placeholder=""
|
|
type="text"
|
|
value=""
|
|
/>
|
|
</Input>
|
|
<span
|
|
className="undefined-action"
|
|
>
|
|
<Icon
|
|
type="search"
|
|
>
|
|
<i
|
|
className="anticon anticon-search"
|
|
/>
|
|
</Icon>
|
|
</span>
|
|
</div>
|
|
</Search>
|
|
`;
|
|
|
|
exports[`Search should show cross icon when input value exists 2`] = `
|
|
<Search
|
|
placeholder=""
|
|
value="a"
|
|
>
|
|
<div>
|
|
<Input
|
|
disabled={false}
|
|
onChange={[Function]}
|
|
placeholder=""
|
|
prefixCls="ant-input"
|
|
type="text"
|
|
value="a"
|
|
>
|
|
<input
|
|
className="ant-input"
|
|
disabled={false}
|
|
onChange={[Function]}
|
|
onKeyDown={[Function]}
|
|
placeholder=""
|
|
type="text"
|
|
value="a"
|
|
/>
|
|
</Input>
|
|
<a
|
|
className="undefined-action"
|
|
href="#"
|
|
onClick={[Function]}
|
|
>
|
|
<Icon
|
|
type="cross-circle"
|
|
>
|
|
<i
|
|
className="anticon anticon-cross-circle"
|
|
/>
|
|
</Icon>
|
|
</a>
|
|
</div>
|
|
</Search>
|
|
`;
|
|
|