-
Notifications
You must be signed in to change notification settings - Fork 588
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ported SpecFlowHelper to FAKE 5 #1886
Conversation
@matthid Added Documentation page |
open System.Text | ||
|
||
/// SpecFlow execution parameter type. | ||
[<CLIMutable>] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We usually no longer specify CLIMutable in Fake 5
let generate setParams = | ||
let parameters = setParams SpecFlowDefaults | ||
|
||
Trace.traceStartTaskUnsafe "SpecFlow " parameters.SubCommand |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can use use _ = Trace.traceStart ...
here to no longer be 'unsafe' :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, thanks for the hint. Will fix that on the other PRs too
Fixed. I also renamed the |
Thanks! |
Ported SpecFlowHelper to FAKE 5 as Fake.DotNet.Testing.SpecFlow