From a5535d99b2a55720b205d72cea72277054c4b76e Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sat, 14 Jul 2018 18:33:58 +0200 Subject: [PATCH] fixes the node path --- test/src/YavscDnxUnitTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/src/YavscDnxUnitTests.cs b/test/src/YavscDnxUnitTests.cs index 8238c9a5..b35cc731 100755 --- a/test/src/YavscDnxUnitTests.cs +++ b/test/src/YavscDnxUnitTests.cs @@ -12,7 +12,7 @@ namespace tests [Fact] void TestNodeJsForAnsitohtml () { - var procStart = new ProcessStartInfo("env", "/usr/bin/nodejs node_modules/ansi-to-html/bin/ansi-to-html"); + var procStart = new ProcessStartInfo("nodejs", "node_modules/ansi-to-html/bin/ansi-to-html"); procStart.UseShellExecute = false; procStart.RedirectStandardInput = true; procStart.RedirectStandardOutput = true;