Skip to content

Commit

Permalink
add a little wait to the tests so that parallel behavior can be bette…
Browse files Browse the repository at this point in the history
…r observed
  • Loading branch information
gasparnagy committed May 25, 2018
1 parent 0f5b194 commit 4d98319
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public void GivenThereIsANewCalcualtor()
[Given("I have entered (.*) into the calculator")]
public void GivenIHaveEnteredSomethingIntoTheCalculator(int number)
{
System.Threading.Thread.Sleep(100);
var outputHelper = ScenarioContext.ScenarioContainer.Resolve<ITestOutputHelper>();
outputHelper.WriteLine("Sample output through ITestOutputHelper");
Console.WriteLine("Running Given step");
Expand Down

0 comments on commit 4d98319

Please sign in to comment.