Skip to content

Instantly share code, notes, and snippets.

@mwadams
Created March 8, 2018 10:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mwadams/7863b029d271dcd2da83bfebc66a7ee0 to your computer and use it in GitHub Desktop.
Save mwadams/7863b029d271dcd2da83bfebc66a7ee0 to your computer and use it in GitHub Desktop.
Configure specflow for XUnit
<?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