diff --git a/rules/properties-alphabetical-order/tests/index.js b/rules/properties-alphabetical-order/tests/index.js index 4f5260c..05aa6c5 100644 --- a/rules/properties-alphabetical-order/tests/index.js +++ b/rules/properties-alphabetical-order/tests/index.js @@ -68,6 +68,21 @@ testRule({ { code: 'a { font-size: 1px; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialised; font-weight: bold; }', }, + { + // blocked by https://github.com/hudochenkov/stylelint-order/issues/78 + skip: true, + code: 'a { display: block; margin: 0 auto 5px 0; Margin: 0 auto 5px 0; width: auto; }', + }, + { + // blocked by https://github.com/hudochenkov/stylelint-order/issues/78 + skip: true, + code: 'a { display: block; Margin: 0 auto 5px 0; margin: 0 auto 5px 0; width: auto; }', + }, + { + // blocked by https://github.com/hudochenkov/stylelint-order/issues/78 + skip: true, + code: 'a { align: center; Border-width: 1px; Border-top-width: 2px; color: red; }', + }, ], reject: [ @@ -131,6 +146,13 @@ testRule({ fixed: '@media print { color: red; top: 0; }', message: messages.expected('color', 'top'), }, + { + // blocked by https://github.com/hudochenkov/stylelint-order/issues/78 + skip: true, + code: 'a { align: center; Border-top-width: 2px; Border-width: 1px; color: red; }', + fixed: 'a { align: center; Border-width: 1px; Border-top-width: 2px; color: red; }', + message: messages.expected('Border-width', 'Border-top-width'), + }, ], });