forked from snap-diff/snap_diff-capybara
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
47 lines (36 loc) · 1.08 KB
/
Rakefile
File metadata and controls
47 lines (36 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true
require "bundler/gem_tasks"
require "rake/testtask"
task default: :test
Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList["test/**/*_test.rb"]
end
Rake::TestTask.new("test:integration") do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList["test/integration/**/*_test.rb"]
end
Rake::TestTask.new("test:signatures") do |t|
ENV["RBS_TEST_DOUBLE_SUITE"] ||= "minitest"
ENV["RBS_TEST_TARGET"] ||= "Capybara::Screenshot::Diff::*"
ENV["RBS_TEST_OPT"] ||= "-rset -rpathname -Isig"
t.libs << "test"
t.ruby_opts << "-r rbs/test/setup"
t.test_files = FileList["test/**/*_test.rb"]
end
task "clobber" do
puts "Cleanup tmp/*.png"
FileUtils.rm_rf(Dir["./tmp/*"])
end
task "test:benchmark" do
require_relative "./scripts/benchmark/find_region_benchmark"
benchmark = Capybara::Screenshot::Diff::Drivers::FindRegionBenchmark.new
puts "For Medium Screen Size: 800x600"
benchmark.for_medium_size_screens
puts ""
puts "*" * 100
puts "For Small Screen Size: 80x60"
benchmark.for_small_images
end