Created
March 8, 2018 10:06
-
-
Save mwadams/7863b029d271dcd2da83bfebc66a7ee0 to your computer and use it in GitHub Desktop.
Configure specflow for XUnit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<configuration> | |
<configSections> | |
<section name="specFlow" type="TechTalk.SpecFlow.Configuration.ConfigurationSectionHandler, TechTalk.SpecFlow"/> | |
</configSections> | |
<specFlow> | |
<language feature="en-US" /> | |
<unitTestProvider name="xUnit" /> | |
<runtime detectAmbiguousMatches="true" stopAtFirstError="false" | |
missingOrPendingStepsOutcome="Inconclusive" /> | |
<trace traceSuccessfulSteps="true" traceTimings="false" | |
minTracedDuration="0:0:0.1" /> | |
</specFlow> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment