ant-design/tests/notification/__snapshots__/demo.test.js.snap
2016-11-22 14:39:40 +08:00

75 lines
1.3 KiB
Plaintext

exports[`test renders ./components/notification/demo/basic.md correctly 1`] = `
<button
class="ant-btn ant-btn-primary"
type="button">
<span>
Open the notification box
</span>
</button>
`;
exports[`test renders ./components/notification/demo/custom-icon.md correctly 1`] = `
<button
class="ant-btn ant-btn-primary"
type="button">
<span>
Open the notification box
</span>
</button>
`;
exports[`test renders ./components/notification/demo/duration.md correctly 1`] = `
<button
class="ant-btn ant-btn-primary"
type="button">
<span>
Open the notification box
</span>
</button>
`;
exports[`test renders ./components/notification/demo/with-btn.md correctly 1`] = `
<div>
<button
class="ant-btn ant-btn-primary"
type="button">
<span>
Open the notification box
</span>
</button>
</div>
`;
exports[`test renders ./components/notification/demo/with-icon.md correctly 1`] = `
<div>
<button
class="ant-btn"
type="button">
<span>
Success
</span>
</button>
<button
class="ant-btn"
type="button">
<span>
Info
</span>
</button>
<button
class="ant-btn"
type="button">
<span>
Warning
</span>
</button>
<button
class="ant-btn"
type="button">
<span>
Error
</span>
</button>
</div>
`;