-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreport.test.js
More file actions
34 lines (32 loc) · 903 Bytes
/
report.test.js
File metadata and controls
34 lines (32 loc) · 903 Bytes
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
const { sortPages } = require("./report.js");
const { test, expect } = require("@jest/globals");
test("sortPages", () => {
const input = {
"https://wagslane.dev/path": 1,
"https://wagslane.dev": 3,
};
const actual = sortPages(input);
const expected = [
["https://wagslane.dev", 3],
["https://wagslane.dev/path", 1],
];
expect(actual).toEqual(expected);
});
test("sortPages", () => {
const input = {
"https://wagslane.dev/path": 1,
"https://wagslane.dev": 4,
"https://wagslane.dev/path1": 3,
"https://wagslane.dev/path2": 5,
"https://wagslane.dev/path3": 2,
};
const actual = sortPages(input);
const expected = [
["https://wagslane.dev/path2", 5],
["https://wagslane.dev", 4],
["https://wagslane.dev/path1", 3],
["https://wagslane.dev/path3", 2],
["https://wagslane.dev/path", 1],
];
expect(actual).toEqual(expected);
});