diff --git a/crates/swc_css_compat/tests/custom-media-query/import-css.css b/crates/swc_css_compat/tests/custom-media-query/import-css.css deleted file mode 100644 index e69de29bb2d1..000000000000 diff --git a/crates/swc_css_compat/tests/custom-media-query/import-media.css b/crates/swc_css_compat/tests/custom-media-query/import-media.css deleted file mode 100644 index e788f32ae5bc..000000000000 --- a/crates/swc_css_compat/tests/custom-media-query/import-media.css +++ /dev/null @@ -1,2 +0,0 @@ -@custom-media --mq-a (max-width: 30em), (max-height: 30em); -@custom-media --not-mq-a not all and (--mq-a); diff --git a/crates/swc_css_compat/tests/custom-media-query/import-media.json b/crates/swc_css_compat/tests/custom-media-query/import-media.json deleted file mode 100644 index 807d8dfdd5e0..000000000000 --- a/crates/swc_css_compat/tests/custom-media-query/import-media.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "customMedia": { - "--mq-a": "(max-width: 30em), (max-height: 30em)", - "--not-mq-a": "not all and (--mq-a)" - } -} diff --git a/crates/swc_css_compat/tests/custom-media-query/import.css b/crates/swc_css_compat/tests/custom-media-query/import.css deleted file mode 100644 index f37220e74e72..000000000000 --- a/crates/swc_css_compat/tests/custom-media-query/import.css +++ /dev/null @@ -1,29 +0,0 @@ -@media (--mq-a) { - body { - order: 1; - } -} - -@media (--mq-a), (--mq-a) { - body { - order: 1; - } -} - -@media not all and (--mq-a) { - body { - order: 2; - } -} - -@media (--not-mq-a) { - body { - order: 1; - } -} - -@media not all and (--not-mq-a) { - body { - order: 2; - } -} diff --git a/crates/swc_css_compat/tests/custom-media-query/import.empty.expect.css b/crates/swc_css_compat/tests/custom-media-query/import.empty.expect.css deleted file mode 100644 index f37220e74e72..000000000000 --- a/crates/swc_css_compat/tests/custom-media-query/import.empty.expect.css +++ /dev/null @@ -1,29 +0,0 @@ -@media (--mq-a) { - body { - order: 1; - } -} - -@media (--mq-a), (--mq-a) { - body { - order: 1; - } -} - -@media not all and (--mq-a) { - body { - order: 2; - } -} - -@media (--not-mq-a) { - body { - order: 1; - } -} - -@media not all and (--not-mq-a) { - body { - order: 2; - } -} diff --git a/crates/swc_css_compat/tests/custom-media-query/import.expect.css b/crates/swc_css_compat/tests/custom-media-query/import.expect.css deleted file mode 100644 index 0bc2bbf3bfec..000000000000 --- a/crates/swc_css_compat/tests/custom-media-query/import.expect.css +++ /dev/null @@ -1,29 +0,0 @@ -@media (max-width: 30em),(max-height: 30em) { - body { - order: 1; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 2; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 1; - } -} - -@media all and (max-width: 30em),all and (max-height: 30em) { - body { - order: 2; - } -} diff --git a/crates/swc_css_compat/tests/custom-media-query/import.plugin.expect.css b/crates/swc_css_compat/tests/custom-media-query/import.plugin.expect.css deleted file mode 100644 index 0bc2bbf3bfec..000000000000 --- a/crates/swc_css_compat/tests/custom-media-query/import.plugin.expect.css +++ /dev/null @@ -1,29 +0,0 @@ -@media (max-width: 30em),(max-height: 30em) { - body { - order: 1; - } -} - -@media (max-width: 30em),(max-height: 30em), (max-width: 30em), (max-height: 30em) { - body { - order: 1; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 2; - } -} - -@media not all and (max-width: 30em),not all and (max-height: 30em) { - body { - order: 1; - } -} - -@media all and (max-width: 30em),all and (max-height: 30em) { - body { - order: 2; - } -}