-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.js
34 lines (26 loc) · 822 Bytes
/
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
import test from 'ava';
import sortGhStarredSize from '.';
test.cb('sort torvalds starred repos', t => {
sortGhStarredSize('torvalds', t.end);
});
test.cb('sort ZYSzys starred js repos', t => {
sortGhStarredSize('ZYSzys', 'js', t.end);
});
test.cb('sort ZYSzys starred py repos', t => {
sortGhStarredSize('ZYSzys', 'py', t.end);
});
test.cb('sort ZYSzys starred ts repos', t => {
sortGhStarredSize('ZYSzys', 'ts', t.end);
});
test.cb('sort ZYSzys starred sh repos', t => {
sortGhStarredSize('ZYSzys', 'sh', t.end);
});
test.cb('sort ZYSzys starred md repos', t => {
sortGhStarredSize('ZYSzys', 'md', t.end);
});
test.cb('sort ZYSzys starred c repos', t => {
sortGhStarredSize('ZYSzys', 'c', t.end);
});
test.cb('sort ZYSzys starred c++ repos', t => {
sortGhStarredSize('ZYSzys', 'c++', t.end);
});