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 53dc432 commit e98507dCopy full SHA for e98507d
Rakefile
@@ -1,5 +1,6 @@
1
# frozen_string_literal: true
2
3
+require "bundler/setup"
4
require "bundler/gem_tasks"
5
require "rspec/core/rake_task"
6
spec/spec_helper.rb
@@ -53,12 +53,12 @@
53
end
54
55
config.after(:each) do |example|
56
- save_exception_aftifacts(browser, example.metadata) if ENV["CI"] && example.exception
+ save_exception_artifacts(browser, example.metadata) if ENV["CI"] && example.exception
57
58
reset
59
60
61
- def save_exception_aftifacts(browser, meta)
+ def save_exception_artifacts(browser, meta)
62
time_now = Time.now
63
filename = File.basename(meta[:file_path])
64
line_number = meta[:line_number]
0 commit comments