strapi/jest.config.js

10 lines
242 B
JavaScript
Raw Normal View History

'use strict';
2018-06-12 17:41:28 +02:00
module.exports = {
name: 'Unit test',
testMatch: ['<rootDir>/packages/**/__tests__/?(*.)+(spec|test).js'],
modulePathIgnorePatterns: ['.cache'],
2019-04-08 19:03:55 +02:00
transform: {},
2021-08-19 22:27:00 +02:00
setupFilesAfterEnv: ['<rootDir>/test/unit.setup.js'],
2018-06-12 17:41:28 +02:00
};