We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31f56ab commit 191a9f4Copy full SHA for 191a9f4
.github/workflows/tests.yml
@@ -16,7 +16,7 @@ jobs:
16
runs-on: ubuntu-latest
17
env:
18
FERRUM_PROCESS_TIMEOUT: 25
19
- FERRUM_DEFAULT_TIMEOUT: 15
+ FERRUM_DEFAULT_TIMEOUT: 25
20
BUNDLE_GEMFILE: .github/gemfiles/${{ matrix.gemfile }}.gemfile
21
steps:
22
- name: Checkout code
spec/unit/process_spec.rb
@@ -3,7 +3,7 @@
3
describe Ferrum::Browser::Process do
4
subject { Ferrum::Browser.new(port: 6000, host: "127.0.0.1") }
5
6
- unless Ferrum::Utils::Platform.windows?
+ unless Ferrum::Utils::Platform.windows? && !Ferrum::Utils::Platform.jruby?
7
it "forcibly kills the child if it does not respond to SIGTERM" do
8
allow(Process).to receive(:spawn).and_return(5678)
9
allow(Process).to receive(:wait).and_return(nil)
0 commit comments