Merge pull request #7089 from aspnet/pakrym/merge22-2

Merge branch 'release/2.2' => 'master'
This commit is contained in:
Pavel Krymets 2019-01-29 11:18:11 -08:00 committed by GitHub
commit 0691dc7102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ namespace FunctionalTests
processStartInfo = new ProcessStartInfo
{
FileName = "cmd",
Arguments = "/c npm test --no-color",
Arguments = "/c npm test --no-color --no-watchman",
};
}
else
@ -47,7 +47,7 @@ namespace FunctionalTests
processStartInfo = new ProcessStartInfo
{
FileName = "npm",
Arguments = "test",
Arguments = "test --no-watchman",
};
}