ant-design-vue/components/notification/__tests__/__snapshots__/demo.test.js.snap

33 lines
2.1 KiB
Plaintext
Raw Normal View History

2018-05-15 01:52:44 +00:00
// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`renders ./components/notification/demo/basic.md correctly 1`] = `<button type="button" class="ant-btn ant-btn-primary"><span>Open the notification box</span></button>`;
exports[`renders ./components/notification/demo/custom-icon.md correctly 1`] = `<button type="button" class="ant-btn ant-btn-primary"><span>Open the notification box</span></button>`;
exports[`renders ./components/notification/demo/custom-style.md correctly 1`] = `<button type="button" class="ant-btn ant-btn-primary"><span>Open the notification box</span></button>`;
exports[`renders ./components/notification/demo/duration.md correctly 1`] = `<button type="button" class="ant-btn ant-btn-primary"><span>Open the notification box</span></button>`;
exports[`renders ./components/notification/demo/placement.md correctly 1`] = `
<div>
2018-05-18 14:04:10 +00:00
<div class="ant-select ant-select-enabled ant-select ant-select-enabled" style="width: 120px; margin-right: 10px;">
<div role="combobox" aria-autocomplete="list" aria-haspopup="true" aria-expanded="false" tabindex="0" class="ant-select-selection ant-select-selection--single">
2018-05-15 01:52:44 +00:00
<div class="ant-select-selection__rendered">
2018-05-18 14:04:10 +00:00
<div title="topRight" class="ant-select-selection-selected-value" style="display: block; opacity: 1;">topRight</div>
</div><span unselectable="unselectable" class="ant-select-arrow"><b></b></span></div>
2018-05-15 01:52:44 +00:00
</div>
<button type="button" class="ant-btn ant-btn-primary"><span>Open the notification box</span></button>
</div>
`;
exports[`renders ./components/notification/demo/with-btn.md correctly 1`] = `<button type="button" class="ant-btn ant-btn-primary"><span>Open the notification box</span></button>`;
exports[`renders ./components/notification/demo/with-icon.md correctly 1`] = `
<div>
<button type="button" class="ant-btn ant-btn-default"><span>Success</span></button>
<button type="button" class="ant-btn ant-btn-default"><span>Info</span></button>
<button type="button" class="ant-btn ant-btn-default"><span>Warning</span></button>
<button type="button" class="ant-btn ant-btn-default"><span>Error</span></button>
</div>
`;