We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01aa17e commit c473bfbCopy full SHA for c473bfb
packages/tailwindcss/src/candidate.test.ts
@@ -961,6 +961,13 @@ it('should parse a utility with an implicit variable as the modifier using the s
961
`)
962
})
963
964
+it('should not parse a utility with an implicit invalid variable as the modifier using the shorthand', () => {
965
+ let utilities = new Utilities()
966
+ utilities.functional('bg', () => [])
967
+
968
+ expect(run('bg-red-500/(value)', { utilities })).toMatchInlineSnapshot(`[]`)
969
+})
970
971
it('should parse a utility with an implicit variable as the modifier that is important', () => {
972
let utilities = new Utilities()
973
utilities.functional('bg', () => [])
0 commit comments