diff options
| author | mo khan <mo.khan@gmail.com> | 2020-09-10 15:06:59 -0600 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-09-10 15:06:59 -0600 |
| commit | 0304f8eb79a179332945e1c952d22df4e20ea839 (patch) | |
| tree | 7050dc135db823eb4fcae5fdf1ec127c078fdf9e | |
| parent | 0ac40d98f8e72fccdaa364054107ed527b8c3223 (diff) | |
test: increase log verbosity for custom x509 endpoint
| -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 |
