mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-06-18 02:39:14 +08:00
26 lines
911 B
Plaintext
26 lines
911 B
Plaintext
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
|
|
exports[`icon slot 1`] = `
|
|
<div role="alert" class="van-notice-bar">Custom Left Icon<div role="marquee" class="van-notice-bar__wrap">
|
|
<div class="van-notice-bar__content van-ellipsis" style="transition-duration: 0s;">
|
|
Content
|
|
</div>
|
|
</div>Custom Right Icon</div>
|
|
`;
|
|
|
|
exports[`should not scroll when content width > wrap width 1`] = `
|
|
<div role="alert" class="van-notice-bar">
|
|
<div role="marquee" class="van-notice-bar__wrap">
|
|
<div class="van-notice-bar__content van-ellipsis" style="transition-duration: 0s;">foo</div>
|
|
</div>
|
|
</div>
|
|
`;
|
|
|
|
exports[`should scroll when content width > wrap width 1`] = `
|
|
<div role="alert" class="van-notice-bar">
|
|
<div role="marquee" class="van-notice-bar__wrap">
|
|
<div class="van-notice-bar__content van-ellipsis" style="transition-duration: 2s; transform: translateX(-100px);">foo</div>
|
|
</div>
|
|
</div>
|
|
`;
|