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:
parent
3ea1f6a0e9
commit
29898df8a8
|
|
@ -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",
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue