We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c454897 commit 257b725Copy full SHA for 257b725
support/helpers/subprocess_helper.rb
@@ -19,7 +19,7 @@ def run_subprocess(script, cwd, env, stdout:, stderr:)
19
expect(process.exit_code).to eq(0)
20
end
21
22
- def run_in_subprocess(code, cwd: Dir.pwd, env: {}, stdout: $stdout, stderr: $stderr)
+ def run_in_subprocess(code, cwd: Dir.pwd, env: {}, stdout: $stdout, stderr: nil)
23
Tempfile.open do |script|
24
script.write(code)
25
script.close
0 commit comments