Skip to content

Commit

Permalink
Remove tests from grouped-flexible.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Szymon Małolepszy committed Oct 9, 2024
1 parent 6e87e2f commit 513ec2b
Showing 1 changed file with 0 additions and 150 deletions.
150 changes: 0 additions & 150 deletions rules/properties-order/tests/grouped-flexible.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,6 @@ testRule({
{
code: 'a { height: 1px; width: 2px; color: pink; font-size: 2px; font-weight: bold; }',
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Height: 1px; Width: 2px; Color: pink; Font-size: 2px; Font-weight: bold; }',
},
{
code: 'a { height: 1px; width: 2px; font-size: 2px; color: pink; font-weight: bold; }',
},
Expand Down Expand Up @@ -57,20 +52,10 @@ testRule({
code: 'a { height: 10px; background: orange; }',
description: 'unspecified after groupless specified',
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Height: 10px; background: orange; }',
},
{
code: 'a { font-weight: bold; background: orange; }',
description: 'unspecified after grouped specified',
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Font-weight: bold; background: orange; }',
},
],

reject: [
Expand All @@ -81,33 +66,6 @@ testRule({
line: 1,
column: 37,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; Font-weight: bold; Width: 2px; }',
fixed: 'a { height: 1px; Width: 2px; Font-weight: bold; }',
message: messages.expected('Width', 'Font-weight'),
line: 1,
column: 37,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; Font-weight: bold; width: 2px; }',
fixed: 'a { height: 1px; width: 2px; Font-weight: bold; }',
message: messages.expected('width', 'Font-weight'),
line: 1,
column: 37,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; font-weight: bold; Width: 2px; }',
fixed: 'a { height: 1px; Width: 2px; font-weight: bold; }',
message: messages.expected('Width', 'font-weight'),
line: 1,
column: 37,
},
{
code: 'a { font-weight: bold; height: 1px; width: 2px; }',
fixed: 'a { height: 1px; width: 2px; font-weight: bold; }',
Expand Down Expand Up @@ -151,16 +109,6 @@ testRule({
{
code: 'a { font-size: 2px; font-weight: bold; height: 1px; width: 2px; }',
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Font-size: 2px; Font-weight: bold; height: 1px; width: 2px; }',
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Font-size: 2px; Font-weight: bold; Height: 1px; Width: 2px; }',
},
],
reject: [
{
Expand All @@ -169,30 +117,6 @@ testRule({
line: 1,
column: 18,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; Font-weight: bold; }',
message: messages.expected('Font-weight', 'height', 'font'),
line: 1,
column: 18,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Height: 1px; font-weight: bold; }',
message: messages.expected('font-weight', 'Height', 'font'),
line: 1,
column: 18,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Height: 1px; Font-weight: bold; }',
message: messages.expected('Font-weight', 'Height', 'font'),
line: 1,
column: 18,
},
],
});

Expand All @@ -216,16 +140,6 @@ testRule({
{
code: 'a { height: 1px; width: 2px; color: pink; font-size: 2px; font-weight: bold; }',
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Height: 1px; width: 2px; Color: pink; Font-size: 2px; font-weight: bold; }',
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Height: 1px; Width: 2px; Color: pink; Font-size: 2px; Font-weight: bold; }',
},
{
code: 'a { width: 2px; height: 1px; font-size: 2px; color: pink; font-weight: bold; }',
},
Expand All @@ -245,33 +159,6 @@ testRule({
line: 1,
column: 37,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; font-weight: bold; Width: 2px; }',
fixed: 'a { Width: 2px; height: 1px; font-weight: bold; }',
message: messages.expected('Width', 'font-weight'),
line: 1,
column: 37,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; Font-weight: bold; width: 2px; }',
fixed: 'a { width: 2px; height: 1px; Font-weight: bold; }',
message: messages.expected('width', 'Font-weight'),
line: 1,
column: 37,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; Font-weight: bold; Width: 2px; }',
fixed: 'a { Width: 2px; height: 1px; Font-weight: bold; }',
message: messages.expected('Width', 'Font-weight'),
line: 1,
column: 37,
},
{
code: 'a { font-weight: bold; height: 1px; width: 2px; }',
fixed: 'a { width: 2px; height: 1px; font-weight: bold; }',
Expand Down Expand Up @@ -311,16 +198,6 @@ testRule({
{
code: 'a { height: 1px; width: 2px; color: pink; font-size: 2px; font-weight: bold; }',
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Height: 1px; width: 2px; Color: pink; font-size: 2px; font-weight: bold; }',
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { Height: 1px; Width: 2px; Color: pink; Font-size: 2px; Font-weight: bold; }',
},
],
reject: [
{
Expand All @@ -330,32 +207,5 @@ testRule({
line: 1,
column: 37,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; font-weight: bold; Width: 2px; }',
fixed: 'a { Width: 2px; height: 1px; font-weight: bold; }',
message: messages.expected('Width', 'font-weight', 'dimensions'),
line: 1,
column: 37,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; Font-weight: bold; width: 2px; }',
fixed: 'a { width: 2px; height: 1px; Font-weight: bold; }',
message: messages.expected('width', 'Font-weight', 'dimensions'),
line: 1,
column: 37,
},
{
// blocked by https://github.com/hudochenkov/stylelint-order/issues/78
skip: true,
code: 'a { height: 1px; Font-weight: bold; Width: 2px; }',
fixed: 'a { Width: 2px; height: 1px; Font-weight: bold; }',
message: messages.expected('Width', 'Font-weight', 'dimensions'),
line: 1,
column: 37,
},
],
});

0 comments on commit 513ec2b

Please sign in to comment.