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