UNPKG
eslint-plugin-logical-properties
Version:
latest (2.1.2)
2.1.2
2.1.1
2.1.0
2.0.2
2.0.1
2.0.0
1.0.1
1.0.0
sabinmarcu.dev/api/eslint-plugin-logical-properties
sabinmarcu/omnirepo
eslint-plugin-logical-properties
/
src
/
rules
/
size.spec.ts
10 lines
(8 loc)
•
249 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ describe, }
from
'vitest'
;
import
rule, { ruleConfig }
from
'./size.js'
;
import
{ runDirectionalRulesTests }
from
'../parsers/directional.utils.js'
;
describe
(
'Size Rule'
,
() =>
{
runDirectionalRulesTests
(
'size'
, rule, ruleConfig); });