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.
58 lines
1.0 KiB
58 lines
1.0 KiB
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`Alert ErrorBoundary 1`] = `
|
|
<div
|
|
class="ant-alert ant-alert-error ant-alert-with-description ant-alert-no-icon"
|
|
data-show="true"
|
|
>
|
|
<span
|
|
class="ant-alert-message"
|
|
>
|
|
ReferenceError: NotExisted is not defined
|
|
</span>
|
|
<span
|
|
class="ant-alert-description"
|
|
>
|
|
<pre>
|
|
in ThrowError
|
|
in ErrorBoundary (created by WrapperComponent)
|
|
in WrapperComponent
|
|
</pre>
|
|
</span>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Alert could accept none react element icon 1`] = `
|
|
<div
|
|
class="ant-alert ant-alert-success"
|
|
data-show="true"
|
|
>
|
|
<span
|
|
class="ant-alert-icon"
|
|
>
|
|
icon
|
|
</span>
|
|
<span
|
|
class="ant-alert-message"
|
|
>
|
|
Success Tips
|
|
</span>
|
|
<span
|
|
class="ant-alert-description"
|
|
/>
|
|
</div>
|
|
`;
|
|
|
|
exports[`Alert rtl render component should be rendered correctly in RTL direction 1`] = `
|
|
<div
|
|
class="ant-alert ant-alert-info ant-alert-no-icon ant-alert-rtl"
|
|
data-show="true"
|
|
>
|
|
<span
|
|
class="ant-alert-message"
|
|
/>
|
|
<span
|
|
class="ant-alert-description"
|
|
/>
|
|
</div>
|
|
`;
|
|
|