You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
422 B
16 lines
422 B
'use strict';
|
|
|
|
/** @type {import('jest').Config} */
|
|
const config = {
|
|
projects: [
|
|
'<rootDir>/packages/plugins/*/jest.config.js',
|
|
'<rootDir>/packages/utils/*/jest.config.js',
|
|
'<rootDir>/packages/generators/*/jest.config.js',
|
|
'<rootDir>/packages/core/*/jest.config.js',
|
|
'<rootDir>/packages/providers/*/jest.config.js',
|
|
'<rootDir>/.github/actions/*/jest.config.js',
|
|
],
|
|
};
|
|
|
|
module.exports = config;
|