Skip to content

Commit c3cb2c2

Browse files
author
Brian Vaughn
authored
Fix DevTools test target (facebook#21267)
1 parent d14b6a4 commit c3cb2c2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/jest/jest-cli.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,9 @@ function logError(message) {
104104
}
105105
function isWWWConfig() {
106106
return (
107-
argv.releaseChannel === 'www-classic' ||
108-
argv.releaseChannel === 'www-modern'
107+
(argv.releaseChannel === 'www-classic' ||
108+
argv.releaseChannel === 'www-modern') &&
109+
argv.project !== 'devtools'
109110
);
110111
}
111112

0 commit comments

Comments
 (0)