Skip to content

Commit

Permalink
Remove leftover comment
Browse files Browse the repository at this point in the history
  • Loading branch information
philipp-spiess committed Sep 9, 2024
1 parent 63b8598 commit 95aa191
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions packages/tailwindcss/src/plugin-api.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1656,22 +1656,6 @@ describe('matchVariant', () => {
}"
`)

// return run(input, config).then((result) => {
// expect(result.css).toMatchFormattedCss(css`
// @media (min-width: 500px) {
// .testmin-\[500px\]\:underline {
// text-decoration-line: underline;
// }
// }
// @media (min-width: 700px) {
// .testmin-\[700px\]\:italic {
// font-style: italic;
// }
// }
// `)
// })
})

test('should be possible to compare arbitrary variants and hardcoded variants', async () => {
let { build } = await compile(
css`
Expand Down Expand Up @@ -1722,26 +1706,6 @@ describe('matchVariant', () => {
}
}"
`)

// return run(input, config).then((result) => {
// expect(result.css).toMatchFormattedCss(css`
// @media (min-width: 500px) {
// .testmin-\[500px\]\:italic {
// font-style: italic;
// }
// }
// @media (min-width: 600px) {
// .testmin-example\:italic {
// font-style: italic;
// }
// }
// @media (min-width: 700px) {
// .testmin-\[700px\]\:italic {
// font-style: italic;
// }
// }
// `)
// })
})

test('should be possible to sort stacked arbitrary variants correctly', async () => {
Expand Down

0 comments on commit 95aa191

Please sign in to comment.