Skip to content

Commit

Permalink
Attempt to run Cors functional tests with watchman disabled. (#7076)
Browse files Browse the repository at this point in the history
According to jestjs/jest#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
  • Loading branch information
pranavkm authored Jan 29, 2019
1 parent 3ea1f6a commit 29898df
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@ public async Task RunClientTests()
processStartInfo = new ProcessStartInfo
{
FileName = "cmd",
Arguments = "/c npm test --no-color",
Arguments = "/c npm test --no-color --no-watchman",
};
}
else
{
processStartInfo = new ProcessStartInfo
{
FileName = "npm",
Arguments = "test",
Arguments = "test --no-watchman",
};
}

Expand Down

0 comments on commit 29898df

Please sign in to comment.