forked from date-fns/date-fns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.ts
54 lines (45 loc) · 1.66 KB
/
test.ts
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
import { describe, expect, it } from "vitest";
import { getISOWeek } from "./index.js";
describe("getISOWeek", () => {
it("returns the ISO week of the given date", () => {
const result = getISOWeek(new Date(2005, 0 /* Jan */, 2));
expect(result).toBe(53);
});
it("accepts a timestamp", () => {
const result = getISOWeek(new Date(2008, 11 /* Dec */, 29).getTime());
expect(result).toBe(1);
});
describe("edge cases", () => {
it("returns the ISO week at 1 January 2016", () => {
const result = getISOWeek(new Date(2016, 0 /* Jan */, 1));
expect(result).toBe(53);
});
it("returns the ISO week at 1 May 2016", () => {
const result = getISOWeek(new Date(2016, 4 /* May */, 1));
expect(result).toBe(17);
});
it("returns the ISO week at 2 May 2016", () => {
const result = getISOWeek(new Date(2016, 4 /* May */, 2));
expect(result).toBe(18);
});
it("returns the ISO week at 31 May 2016", () => {
const result = getISOWeek(new Date(2016, 4 /* May */, 31));
expect(result).toBe(22);
});
it("properly works with negative numbers", () => {
expect(getISOWeek(new Date(2014, 6 /* Jul */, 14))).toBe(29);
expect(getISOWeek(new Date(-2014, 6 /* Jul */, 14))).toBe(29);
});
});
it("handles dates before 100 AD", () => {
const initialDate = new Date(0);
initialDate.setFullYear(7, 11 /* Dec */, 30);
initialDate.setHours(0, 0, 0, 0);
const result = getISOWeek(initialDate);
expect(result).toBe(52);
});
it("returns NaN if the given date is invalid", () => {
const result = getISOWeek(new Date(NaN));
expect(isNaN(result)).toBe(true);
});
});