UNPKG
stylelint-config-jam3
Version:
latest (0.1.9)
0.1.9
0.1.8
0.1.7
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
Jam3 shareable config for stylelint
github.com/Jam3/stylelint-config-jam3
Jam3/stylelint-config-jam3
stylelint-config-jam3
/
__tests__
/
index.test.js
12 lines
(9 loc)
•
276 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
;
const
config =
require
(
'../index'
);
describe
(
'Config file'
,
() =>
{
test
(
'Config file is a json file'
,
() =>
{
expect
(config).
toHaveProperty
(
'severity'
);
expect
(config).
toHaveProperty
(
'plugins'
);
expect
(config).
toHaveProperty
(
'rules'
); }); });