1234567891011121314151617181920212223242526272829303132333435363738394041 |
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- import { parseTime } from '@/utils/index.js'
- describe('Utils:parseTime', () => {
- const d = new Date('2018-07-13 17:54:01') // "2018-07-13 17:54:01"
- it('timestamp', () => {
- expect(parseTime(d)).toBe('2018-07-13 17:54:01')
- })
- it('timestamp string', () => {
- expect(parseTime((d + ''))).toBe('2018-07-13 17:54:01')
- })
- it('ten digits timestamp', () => {
- expect(parseTime((d / 1000).toFixed(0))).toBe('2018-07-13 17:54:01')
- })
- it('new Date', () => {
- expect(parseTime(new Date(d))).toBe('2018-07-13 17:54:01')
- })
- it('format', () => {
- expect(parseTime(d, '{y}-{m}-{d} {h}:{i}')).toBe('2018-07-13 17:54')
- expect(parseTime(d, '{y}-{m}-{d}')).toBe('2018-07-13')
- expect(parseTime(d, '{y}/{m}/{d} {h}-{i}')).toBe('2018/07/13 17-54')
- })
- it('get the day of the week', () => {
- expect(parseTime(d, '{a}')).toBe('五') // 星期五
- })
- it('get the day of the week', () => {
- expect(parseTime(+d + 1000 * 60 * 60 * 24 * 2, '{a}')).toBe('日') // 星期日
- })
- it('empty argument', () => {
- expect(parseTime()).toBeNull()
- })
- })
|