Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update variants.test.ts
  • Loading branch information
shedokan authored and philipp-spiess committed Sep 23, 2024
commit b0e5c98e6c181bd3297660975ed875832a82e525
4 changes: 2 additions & 2 deletions packages/tailwindcss/src/variants.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ test('peer-*', async () => {

test('ltr', async () => {
expect(await run(['ltr:flex'])).toMatchInlineSnapshot(`
".ltr\\:flex:where([dir="ltr"], [dir="ltr"] *) {
".ltr\\:flex:where(:dir(ltr), :dir(ltr) *, [dir="ltr"], [dir="ltr"] *) {
display: flex;
}"
`)
Expand All @@ -937,7 +937,7 @@ test('ltr', async () => {

test('rtl', async () => {
expect(await run(['rtl:flex'])).toMatchInlineSnapshot(`
".rtl\\:flex:where([dir="rtl"], [dir="rtl"] *) {
".rtl\\:flex:where(:dir(rtl), :dir(rtl) *, [dir="rtl"], [dir="rtl"] *) {
display: flex;
}"
`)
Expand Down