We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 689b239 commit 2d051e2Copy full SHA for 2d051e2
test/basic.test.ts
@@ -32,9 +32,7 @@ describe('tailwindcss module', async () => {
32
(nuxt.options.tailwindcss.cssPath as string).replace(/\\/g /* windows protocol */, '/'),
33
)
34
35
- expect(spyStderr).toHaveBeenCalledTimes(0)
36
- expect(spyStdout).toHaveBeenCalledTimes(1)
37
- expect(spyStdout.mock.calls[0][0]).contains('Using Tailwind CSS from ~/tailwind.css')
+ expect(spyStdout.mock.calls.some(c => (c[0] as string).includes('Using Tailwind CSS from ~/tailwind.css'))).toBeTruthy()
38
})
39
40
test('default js config is merged in', () => {
0 commit comments