ant-design-vue/components/transfer/__tests__/__snapshots__/search.test.js.snap

16 lines
519 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`Search should show cross icon when input value exists 1`] = `
<div>
<input value="" placeholder="" type="text" class="ant-input"><span class="undefined-action"><i class="anticon anticon-search"></i></span></div>
`;
exports[`Search should show cross icon when input value exists 2`] = `
<div>
<input value="a" placeholder="" type="text" class="ant-input">
<a href="#" class="undefined-action">
<i class="anticon anticon-cross-circle"></i>
</a>
</div>
`;