From 823fe8612c2a897baa27a577120e856ec006a321 Mon Sep 17 00:00:00 2001 From: BooksBaum <15612932+Booksbaum@users.noreply.github.com> Date: Sun, 17 Oct 2021 11:45:40 +0200 Subject: [PATCH] Handle command line args in test project (#118) --- test/Ionide.ProjInfo.Tests/Program.fs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/Ionide.ProjInfo.Tests/Program.fs b/test/Ionide.ProjInfo.Tests/Program.fs index 4be59737..795be393 100644 --- a/test/Ionide.ProjInfo.Tests/Program.fs +++ b/test/Ionide.ProjInfo.Tests/Program.fs @@ -22,8 +22,9 @@ let main argv = Environment.SetEnvironmentVariable("DOTNET_HOST_PATH", IO.Path.Combine(baseDir, dotnetExe)) let toolsPath = Init.init (IO.DirectoryInfo Environment.CurrentDirectory) - Tests.runTests + Tests.runTestsWithArgs { defaultConfig with printer = TestPrinters.summaryPrinter defaultConfig.printer verbosity = LogLevel.Info } + argv (Tests.tests toolsPath)