From 3840aa0be4d0c12978e9c13dbd97e517e17c2d46 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Mon, 5 Aug 2019 19:10:47 -0700 Subject: [PATCH] Point test at the now skin location --- modern/src/utils.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modern/src/utils.test.js b/modern/src/utils.test.js index 7b52c2d1..21cf74d8 100644 --- a/modern/src/utils.test.js +++ b/modern/src/utils.test.js @@ -5,7 +5,7 @@ import path from "path"; async function getSkinZip() { const skinBuffer = await fsPromises.readFile( - path.join(__dirname, "../public/skins/CornerAmp_Redux.wal") + path.join(__dirname, "../skins/CornerAmp_Redux.wal") ); return JSZip.loadAsync(skinBuffer); }