Fix jest hast map issue with .cache folder in examples

Signed-off-by: Alexandre Bodin <bodin.alex@gmail.com>
This commit is contained in:
Alexandre Bodin 2020-10-01 17:37:05 +02:00
parent 9f00438471
commit 4d5177898b

View File

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