From cfa1eecb2331138a1e6c7ebae39ec79402817b07 Mon Sep 17 00:00:00 2001 From: Wilson Silva Date: Fri, 6 Jan 2023 12:13:26 +0700 Subject: [PATCH] Fix the local code coverage reporting --- spec/spec_helper.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index d3686d7..c600741 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,6 +1,5 @@ # frozen_string_literal: true -require 'nostr' require 'pry' require 'simplecov' require 'simplecov-console' @@ -14,6 +13,8 @@ unless ENV['COVERAGE'] == 'false' end end +require 'nostr' + RSpec.configure do |config| # Enable flags like --only-failures and --next-failure config.example_status_persistence_file_path = '.rspec_status'