4

我正在做一个演示Canopy的演示文稿,我正在尝试让 LiveHtmlReporter 工作,但没有成功。到目前为止,我已经能够让它打开显示模板的浏览器并将报告保存到磁盘,但是报告永远不会随着测试运行的结果而更新。浏览器和保存的报告都包含默认值0 Passed 0 Failed 0 Todo 0 Skipped。控制台运行器显示

0 minutes 3 seconds to execute
2 passed
0 failed
Not saving report
Not saving report

我有以下代码

open types
open configuration
open reporters

reporter <- new LiveHtmlReporter(Firefox) :> IReporter

let liveHtmlReporter = reporter :?> LiveHtmlReporter
liveHtmlReporter.reportTemplateUrl <- @"http://localhost:56295/content/reporttemplate.html"
liveHtmlReporter.saveReportHtml @"C:\Code\CanopyDemo\" "report"

// Code for actual tests here 

我想我遗漏了一些简单的东西,但我对 Canopy 或 F# 都不够熟悉,还没有发现我遗漏的东西。

4

1 回答 1

1

有类似的问题

reporter <- new LiveHtmlReporter(Chrome, configuration.chromeDir) :> IReporter
let liveHtmlReporter = reporter :?> LiveHtmlReporter
liveHtmlReporter.reportPath <- Some "reports/AutomationResults"
于 2016-07-20T11:41:07.633 回答