-
Notifications
You must be signed in to change notification settings - Fork 933
/
Copy pathindex.test.js
146 lines (131 loc) Β· 2.53 KB
/
index.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
import test from 'ava';
import chalk from 'chalk';
import {includes} from 'lodash';
import format from '.';
const ok = chalk.bold(
`${chalk.green(
'β'
)} found 0 problems, 0 warnings \n (Need help? -> https://github.com/marionebl/commitlint#what-is-commitlint)`
);
test('does nothing without arguments', t => {
const actual = format();
t.deepEqual(actual, ok);
});
test('does nothing without report results', t => {
const actual = format({results: []});
t.deepEqual(actual, ok);
});
test('does nothing without .errors and .warnings', t => {
const actual = format({results: [{}]});
t.deepEqual(actual, ok);
});
test('returns empty summary of problems for empty .errors and .warnings', t => {
const actual = format({
results: [
{
errors: [],
warnings: []
}
]
});
t.true(actual.includes('0 problems, 0 warnings'));
});
test('returns a correct of empty .errors and .warnings', t => {
const actualError = format({
results: [
{
errors: [
{
level: 2,
name: 'error-name',
message: 'There was an error'
}
]
}
]
});
const actualWarning = format({
results: [
{
warnings: [
{
level: 1,
name: 'warning-name',
message: 'There was a problem'
}
]
}
]
});
t.true(includes(actualError, 'There was an error'));
t.true(includes(actualError, '1 problems, 0 warnings'));
t.true(includes(actualWarning, 'There was a problem'));
t.true(includes(actualWarning, '0 problems, 1 warnings'));
});
test('uses appropriate signs by default', t => {
const actualError = format({
results: [
{
errors: [
{
level: 2,
name: 'error-name',
message: 'There was an error'
}
]
}
]
});
const actualWarning = format({
results: [
{
warnings: [
{
level: 1,
name: 'warning-name',
message: 'There was a problem'
}
]
}
]
});
t.true(includes(actualError, 'β'));
t.true(includes(actualWarning, 'β '));
});
test('uses signs as configured', t => {
const options = {signs: ['HNT', 'WRN', 'ERR']};
const actualError = format(
{
results: [
{
errors: [
{
level: 2,
name: 'error-name',
message: 'There was an error'
}
]
}
]
},
options
);
const actualWarning = format(
{
results: [
{
warnings: [
{
level: 1,
name: 'warning-name',
message: 'There was a problem'
}
]
}
]
},
options
);
t.true(includes(actualError, 'ERR'));
t.true(includes(actualWarning, 'WRN'));
});