We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce90543 commit df41afbCopy full SHA for df41afb
jest.config.js
@@ -10,7 +10,13 @@ module.exports = () => {
10
global.JEST_ROOT_CONFIG = true
11
12
const config = createJestTSConfig({
13
- projects: ['<rootDir>/packages/*'],
+ projects: [
14
+ // being explicit here, as a globbing bug means that using packages/* can cause problems in non-worktrees (haven't fully investigated yet).
15
+ '<rootDir>/packages/core',
16
+ '<rootDir>/packages/core-integration-tests',
17
+ '<rootDir>/packages/node',
18
+ '<rootDir>/packages/browser',
19
+ ],
20
})
21
return config
22
}
0 commit comments