1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-25 23:45:32 +00:00
notes/node_modules/stylelint-selector-no-utility/test/index.js

19 lines
449 B
JavaScript
Raw Normal View History

2017-03-09 18:16:08 +00:00
var testRule = require("stylelint-test-rule-tape")
var rule = require("..")
testRule(rule.rule, {
ruleName: rule.ruleName,
config: true,
skipBasicChecks: true,
accept: [
{ code: "a { }" }
],
reject: [
{ code: ".m-0 { color: #fff; }" },
{ code: ".m-0:hover { color: #fff; }" },
{ code: ".m-2, .foo { color: #fff; }" },
{ code: ".m-2[type=button] { color: #fff; }" },
{ code: ".foo.m-0 { color: #fff; }" }
]
})