diff --git a/js/tests/happiness-manager_test.mjs b/js/tests/happiness-manager_test.mjs index d5b888a9..229dd2dd 100644 --- a/js/tests/happiness-manager_test.mjs +++ b/js/tests/happiness-manager_test.mjs @@ -29,8 +29,8 @@ export const setup = async ({ path }) => { } } const resetAnswersIn = async ({ dir }) => { - const dir = await readdir(`${tmpPath}/${dir}`) - await Promise.all(dir.map(file => rm(`${tmpPath}/${dir}/${file}`))) + const files = await readdir(`${tmpPath}/${dir}`) + await Promise.all(files.map(file => rm(`${tmpPath}/${dir}/${file}`))) } const createAnswers = (nb, elem) => [...Array(nb).keys()].map(() => elem) const setAnswersIn = async ({ answers, dir }) => {