-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.test.js
37 lines (34 loc) · 1.07 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
const path = require("path");
const stylelint = require("stylelint");
function resolveFile(name) {
return path.resolve(__dirname, `./css-examples/${name}`);
}
function extractErrorMessage(warnings) {
return warnings.map(({ text }) => text);
}
describe("stylelint plugins", () => {
it("should pass for valid css file", () => {
return stylelint
.lint({
files: [resolveFile("valid.pcss")],
configFile: resolveFile("config.js"),
})
.then(({ results }) => {
expect(results).toHaveLength(1);
expect(results[0].warnings).toHaveLength(0);
expect(extractErrorMessage(results[0].warnings)).toMatchSnapshot();
});
});
it("should throw error for invalid css file", () => {
return stylelint
.lint({
files: [resolveFile("invalid.pcss")],
configFile: resolveFile("config.js"),
})
.then(({ results }) => {
expect(results).toHaveLength(1);
expect(results[0].warnings).toHaveLength(5);
expect(extractErrorMessage(results[0].warnings)).toMatchSnapshot();
});
});
});