From 96d93820c6d1fd4cb95a4561943f0c2963e1fdef Mon Sep 17 00:00:00 2001 From: Leo Lamprecht Date: Wed, 23 Nov 2016 17:17:31 +0100 Subject: [PATCH] Added correct path for fixtures --- test/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.js b/test/index.js index d4d0383..5098834 100644 --- a/test/index.js +++ b/test/index.js @@ -12,7 +12,7 @@ import hash from '../lib/hash' const prefix = join(__dirname, '_fixtures') + '/' const base = path => path.replace(prefix, '') -const fixture = name => resolve(`./_fixtures/${name}`) +const fixture = name => resolve(`./test/_fixtures/${name}`) const readJSON = async file => { const data = await readFile(file)