https://bugzilla.wikimedia.org/show_bug.cgi?id=71602

--- Comment #1 from Dan Duvall <[email protected]> ---
I can repro the reported behavior consistently in MWV using the following
feature/steps.

  Feature: Parallel Tests

    Scenario: Process 1
      When I wait 10 seconds
      Then the browser connection should still be alive

    Scenario: Process 2
      When I wait 2 seconds
      Then the browser connection should still be alive


  Given(/^I wait (\d+) seconds$/) do |seconds|
    sleep seconds.to_i
  end

  Then(/^the browser connection should still be alive$/) do
    expect(@browser.execute_script("return true")).to be(true)
  end

And by executing the scenarios in parallel.

  shell 1$ HEADLESS=true bundle exec cucumber features/test.feature:3
  shell 2$ HEADLESS=true bundle exec cucumber features/test.feature:7

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
Wikibugs-l mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/wikibugs-l

Reply via email to