Prevent .cache folders to impact the unit tests

Signed-off-by: Convly <jean-sebastien.herbaux@epitech.eu>
This commit is contained in:
Convly 2020-10-01 17:49:51 +02:00
parent e55ea1d6b5
commit 0c950a9d2f

View File

@ -1,5 +1,6 @@
module.exports = {
name: 'Unit test',
testMatch: ['**/packages/**/__tests__/?(*.)+(spec|test).js'],
modulePathIgnorePatterns: ['.cache'],
transform: {},
};