Skip to content

Commit

Permalink
fix(jest-config): Allow exactly one project
Browse files Browse the repository at this point in the history
  • Loading branch information
theneva committed Dec 11, 2018
1 parent 509272d commit 968b35e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/jest-config/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ export function readConfigs(
}
}

if (projects.length > 1) {
if (projects.length > 0) {
const parsedConfigs = projects
.filter(root => {
// Ignore globbed files that cannot be `require`d.
Expand Down

0 comments on commit 968b35e

Please sign in to comment.