diff --git a/__tests__/sanity.test.js b/__tests__/sanity.test.js index a4be2cfcc..a96d4b976 100644 --- a/__tests__/sanity.test.js +++ b/__tests__/sanity.test.js @@ -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) })