deno.land / x / dayjs@v1.11.5 / test / plugin / minMax.test.js

minMax.test.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import MockDate from 'mockdate'import dayjs from '../../src'import minMax from '../../src/plugin/minMax'
dayjs.extend(minMax)
beforeEach(() => { MockDate.set(new Date())})
afterEach(() => { MockDate.reset()})
const arg1 = dayjs('2019-01-01')const arg2 = dayjs('2018-01-01')const arg3 = dayjs('2017-01-01')const arg4 = dayjs('Invalid Date')
it('Return current time if no argument', () => { expect(dayjs.max()) .toBe(null) expect(dayjs.min()) .toBe(null) expect(dayjs.max(null)) .toBe(null) expect(dayjs.min(null)) .toBe(null)})
it('Return current time if passing empty array', () => { expect(dayjs.max([])) .toBe(null) expect(dayjs.min([])) .toBe(null)})
it('Compare between arguments', () => { expect(dayjs.max(arg1, arg2, arg3).format()) .toBe(arg1.format()) expect(dayjs.min(arg1, arg2, arg3).format()) .toBe(arg3.format())})
it('Compare in array', () => { expect(dayjs.max([arg1, arg2, arg3]).format()) .toBe(arg1.format()) expect(dayjs.min([arg1, arg2, arg3]).format()) .toBe(arg3.format())})
it('If Invalid Date return Invalid Date', () => { expect(dayjs.max(arg1, arg2, arg3, arg4).format()) .toBe(arg4.format()) expect(dayjs.min([arg1, arg2, arg3, arg4]).format()) .toBe(arg4.format())})
dayjs

Version Info

Tagged at
a year ago