Attempt to run Cors functional tests with watchman disabled. (#7076)

According to https://github.com/facebook/jest/issues/2219, jest will
not run tests if watchman is installed. It is not entirely clear if
this is the case in our OSX CI environment, but the symptoms seem close
to what's reported in the issue.

Possible fix for https://github.com/aspnet/AspNetCore-Internal/issues/1619
This commit is contained in:
Pranav K 2019-01-28 16:44:56 -08:00 committed by GitHub
parent 3ea1f6a0e9
commit 29898df8a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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