variables.js 395 B

1234567891011121314
  1. module.exports = [
  2. {
  3. 'should': 'Should not process variables starting with direction',
  4. 'expected': ':root {--left-margin: 1em}',
  5. 'input': ':root {--left-margin: 1em}',
  6. 'reversable': true
  7. },
  8. {
  9. 'should': 'Should not process variables containing direction',
  10. 'expected': ':root {--brightest: red}',
  11. 'input': ':root {--brightest: red}',
  12. 'reversable': true
  13. }
  14. ]