fix wrong output path

This commit is contained in:
Patrick Heller 💩 2017-11-03 23:49:49 +01:00
parent 471a19ea53
commit 76eb4beb03

View File

@ -24,7 +24,7 @@ it('generates the right CSS with implicit screen utilities', () => {
return postcss([tailwind()])
.process(input)
.then(result => {
const expected = fs.readFileSync(path.resolve(`${__dirname}/fixtures/tailwind-output.css`), 'utf8')
const expected = fs.readFileSync(path.resolve(`${__dirname}/fixtures/tailwind-output-with-explicit-screen-utilities.css`), 'utf8')
expect(result.css).toBe(expected)
})