Skip to content

Commit 60af234

Browse files
committed
Update test for output when using no Tailwind features
1 parent eea8b54 commit 60af234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

__tests__/sanity.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ it('generates the right CSS', () => {
2323

2424
it('does not add any CSS if no Tailwind features are used', () => {
2525
return postcss([tailwind()])
26-
.process('')
26+
.process('.foo { color: blue; }')
2727
.then(result => {
28-
expect(result.css).toBe('')
28+
expect(result.css).toMatchCss('.foo { color: blue; }')
2929
})
3030
})
3131

0 commit comments

Comments
 (0)