Skip to content

Commit e5ab9e6

Browse files
committed
add shadow so that we can test @tailwind base
We were only using `font-bold`, but that doesn't require any base rules. We try to only inject rules that are required, even for `base` related rules. Adding `shadow` will ensure that we can test that `base` rules have been added.
1 parent eefe0dd commit e5ab9e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integrations/tailwindcss-cli/tests/cli.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ let EXECUTABLE = 'node ../../lib/cli.js'
1212

1313
describe('Build command', () => {
1414
test('--output', async () => {
15-
await writeInputFile('index.html', html`<div class="font-bold"></div>`)
15+
await writeInputFile('index.html', html`<div class="font-bold shadow"></div>`)
1616

1717
await $(`${EXECUTABLE} --output ./dist/main.css`)
1818

0 commit comments

Comments
 (0)