mirror of
https://github.com/wishthis/wishthis.git
synced 2026-04-18 21:47:35 -04:00
15 lines
395 B
JavaScript
15 lines
395 B
JavaScript
module.exports = [
|
|
{
|
|
'should': 'Should not process variables starting with direction',
|
|
'expected': ':root {--left-margin: 1em}',
|
|
'input': ':root {--left-margin: 1em}',
|
|
'reversable': true
|
|
},
|
|
{
|
|
'should': 'Should not process variables containing direction',
|
|
'expected': ':root {--brightest: red}',
|
|
'input': ':root {--brightest: red}',
|
|
'reversable': true
|
|
}
|
|
]
|