Files
vant/src/count-down/test/__snapshots__/index.spec.tsx.snap
T
neverlandandGitHub 44fb849a5f types(CountDown): add CountDownInstance type (#9153)
* types(CountDown): add CountDownInstance type

* chore: fix snapshot
2021-07-29 15:34:08 +08:00

32 lines
595 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`should format S milliseconds correctly 1`] = `
<div class="van-count-down">
01-5
</div>
`;
exports[`should format SS milliseconds correctly 1`] = `
<div class="van-count-down">
01-50
</div>
`;
exports[`should format complete time correctly 1`] = `
<div class="van-count-down">
01-05-59-59-999
</div>
`;
exports[`should format incomplete time correctly 1`] = `
<div class="van-count-down">
29-59-59-999
</div>
`;
exports[`should not start counting when auto-start prop is false 1`] = `
<div class="van-count-down">
100
</div>
`;