F# canopy - how to use LiveHtmlReporter?
问题 I am trying to get F# and canopy to log tests in html files. So here it says that all I need to do is: open configuration open reporters reporter <- new LiveHtmlReporter() :> IReporter This didn't work for me. I managed to start the LiveHtmlReporter by using Chrome to start it. Now I am struggling to make it save the reports after tests are finished. When I try to use: reporter <- new LiveHtmlReporter(Chrome, "C:\\") :> IReporter let liveHtmlReporter = reporter :?> LiveHtmlReporter