diff options
| -rw-r--r-- | spec/integration/ruby/bundler_spec.rb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/spec/integration/ruby/bundler_spec.rb b/spec/integration/ruby/bundler_spec.rb index 5d18b12..b70c67e 100644 --- a/spec/integration/ruby/bundler_spec.rb +++ b/spec/integration/ruby/bundler_spec.rb @@ -101,7 +101,12 @@ RSpec.describe "bundler" do end context "when the CA certificate is provided" do - let(:env) { { 'ADDITIONAL_CA_CERT_BUNDLE' => x509_certificate('wildcard.test').read } } + let(:env) do + { + 'ADDITIONAL_CA_CERT_BUNDLE' => x509_certificate('wildcard.test').read, + 'LOG_LEVEL' => 'debug' + } + end specify do expect(subject).to match_schema |
