Skip to content

Commit ccb2906

Browse files
authored
Merge branch 'master' into revert-2387-catch-no-tests
2 parents b01dc34 + 2aafaad commit ccb2906

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/react-dev-utils/WebpackDevServerUtils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function printInstructions(appName, urls, useYarn) {
107107
console.log('Note that the development build is not optimized.');
108108
console.log(
109109
`To create a production build, use ` +
110-
`${chalk.cyan(`${useYarn ? 'yarn' : 'npm'} run build`)}.`
110+
`${chalk.cyan(`${useYarn ? 'yarn' : 'npm run'} build`)}.`
111111
);
112112
console.log();
113113
}

tasks/e2e-kitchensink.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ REACT_APP_SHELL_ENV_MESSAGE=fromtheshell \
156156
CI=true \
157157
NODE_PATH=src \
158158
NODE_ENV=test \
159-
npm test -- --no-cache --testPathPattern="/src/"
159+
npm test -- --no-cache --testPathPattern=src
160160

161161
# Test "development" environment
162162
tmp_server_log=`mktemp`
@@ -220,7 +220,7 @@ REACT_APP_SHELL_ENV_MESSAGE=fromtheshell \
220220
CI=true \
221221
NODE_PATH=src \
222222
NODE_ENV=test \
223-
npm test -- --no-cache --testPathPattern='/src/'
223+
npm test -- --no-cache --testPathPattern=src
224224

225225
# Test "development" environment
226226
tmp_server_log=`mktemp`

0 commit comments

Comments
 (0)