-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathno-important.test.js
74 lines (69 loc) · 1.58 KB
/
no-important.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
/**
* @fileoverview Tests for no-important rule.
* @author Yann Bertrand
*/
//------------------------------------------------------------------------------
// Imports
//------------------------------------------------------------------------------
import rule from "../../src/rules/no-important.js";
import css from "../../src/index.js";
import { RuleTester } from "eslint";
//------------------------------------------------------------------------------
// Tests
//------------------------------------------------------------------------------
const ruleTester = new RuleTester({
plugins: {
css,
},
language: "css/css",
});
ruleTester.run("no-important", rule, {
valid: [
"a { color: red; }",
"a { color: red; background-color: blue; }",
"a { color: red; transition: none; }",
"body { --custom-property: red; }",
"body { padding: 0; }",
"a { color: red; -moz-transition: bar }",
"@font-face { font-weight: 100 400 }",
'@property --foo { syntax: "*"; inherits: false; }',
],
invalid: [
{
code: "a { color: red !important; }",
errors: [
{
messageId: "unexpectedImportant",
line: 1,
column: 5,
endLine: 1,
endColumn: 10,
},
],
},
{
code: ".link { width: 100% !important }",
errors: [
{
messageId: "unexpectedImportant",
line: 1,
column: 9,
endLine: 1,
endColumn: 14,
},
],
},
{
code: "a .link { padding: 10px 20px 30px 40px !important }",
errors: [
{
messageId: "unexpectedImportant",
line: 1,
column: 11,
endLine: 1,
endColumn: 18,
},
],
},
],
});