From 76eb4beb0382b6a7dfdd0d5131d5c753c0cdfad2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Heller=20=F0=9F=92=A9?= Date: Fri, 3 Nov 2017 23:49:49 +0100 Subject: [PATCH] fix wrong output path --- __tests__/sanity.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) })