├── .dockerignore ├── .gitattributes ├── .github ├── actions │ ├── setup-ruby-and-dependencies │ │ └── action.yml │ └── upload-screenshots │ │ └── action.yml ├── dependabot.yml └── workflows │ ├── lint.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .standard.yml ├── .yamllint.yml ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── bundle ├── console ├── dtest ├── install-vips ├── rake ├── setup └── standardrb ├── capybara-screenshot-diff.gemspec ├── gemfiles ├── edge_gems.rb ├── rails70_gems.rb ├── rails71_gems.rb ├── rails72_gems.rb ├── rails80_gems.rb └── rails81_gems.rb ├── gems.rb ├── lib ├── capybara-screenshot-diff.rb ├── capybara │ └── screenshot │ │ ├── diff.rb │ │ └── diff │ │ ├── area_calculator.rb │ │ ├── browser_helpers.rb │ │ ├── capture_strategy.rb │ │ ├── comparison.rb │ │ ├── comparison_loader.rb │ │ ├── cucumber.rb │ │ ├── difference.rb │ │ ├── difference_finder.rb │ │ ├── drivers.rb │ │ ├── drivers │ │ ├── base_driver.rb │ │ ├── chunky_png_driver.rb │ │ └── vips_driver.rb │ │ ├── image_compare.rb │ │ ├── image_preprocessor.rb │ │ ├── os.rb │ │ ├── region.rb │ │ ├── reporters │ │ └── default.rb │ │ ├── screenshot_coordinator.rb │ │ ├── screenshot_matcher.rb │ │ ├── screenshot_namer_dsl.rb │ │ ├── screenshoter.rb │ │ ├── stable_capture_strategy.rb │ │ ├── stable_screenshoter.rb │ │ ├── standard_capture_strategy.rb │ │ ├── utils.rb │ │ ├── vcs.rb │ │ └── version.rb ├── capybara_screenshot_diff.rb └── capybara_screenshot_diff │ ├── attempts_reporter.rb │ ├── backtrace_filter.rb │ ├── cucumber.rb │ ├── dsl.rb │ ├── error_with_filtered_backtrace.rb │ ├── minitest.rb │ ├── rspec.rb │ ├── screenshot_assertion.rb │ ├── screenshot_namer.rb │ ├── snap.rb │ └── snap_manager.rb ├── scripts └── benchmark │ └── find_region_benchmark.rb ├── test ├── fixtures │ ├── app │ │ ├── doc │ │ │ └── screenshots │ │ │ │ ├── .keep │ │ │ │ ├── linux │ │ │ │ ├── cuprite │ │ │ │ │ ├── cropped_screenshot.png │ │ │ │ │ ├── index-blur_active_element-disabled.png │ │ │ │ │ ├── index-blur_active_element-enabled.png │ │ │ │ │ ├── index-cropped.png │ │ │ │ │ ├── index-hide_caret-disabled.png │ │ │ │ │ ├── index-hide_caret-enabled.png │ │ │ │ │ ├── index-vips.webp │ │ │ │ │ ├── index-without-img-cropped.png │ │ │ │ │ ├── index.png │ │ │ │ │ ├── index_with_skip_area_as_array_of_css.png │ │ │ │ │ ├── index_with_skip_area_as_array_of_css_and_p.png │ │ │ │ │ └── record_screenshot │ │ │ │ │ │ ├── record_index │ │ │ │ │ │ └── 00_index.png │ │ │ │ │ │ ├── record_index_as_webp │ │ │ │ │ │ └── 00_index-vips.webp │ │ │ │ │ │ ├── record_index_cropped │ │ │ │ │ │ └── 00_index-cropped.png │ │ │ │ │ │ └── record_index_with_stability │ │ │ │ │ │ └── 00_index.png │ │ │ │ ├── selenium_chrome_headless │ │ │ │ │ ├── cropped_screenshot.png │ │ │ │ │ ├── index-blur_active_element-disabled.png │ │ │ │ │ ├── index-blur_active_element-enabled.png │ │ │ │ │ ├── index-cropped.png │ │ │ │ │ ├── index-hide_caret-disabled.png │ │ │ │ │ ├── index-hide_caret-enabled.png │ │ │ │ │ ├── index-vips.webp │ │ │ │ │ ├── index-without-img-cropped.png │ │ │ │ │ ├── index.png │ │ │ │ │ ├── index_with_skip_area_as_array_of_css.png │ │ │ │ │ ├── index_with_skip_area_as_array_of_css_and_p.png │ │ │ │ │ └── record_screenshot │ │ │ │ │ │ ├── record_index │ │ │ │ │ │ └── 00_index.png │ │ │ │ │ │ ├── record_index_as_webp │ │ │ │ │ │ └── 00_index-vips.webp │ │ │ │ │ │ ├── record_index_cropped │ │ │ │ │ │ └── 00_index-cropped.png │ │ │ │ │ │ └── record_index_with_stability │ │ │ │ │ │ └── 00_index.png │ │ │ │ └── selenium_headless │ │ │ │ │ ├── cropped_screenshot.png │ │ │ │ │ ├── index-blur_active_element-disabled.png │ │ │ │ │ ├── index-blur_active_element-enabled.png │ │ │ │ │ ├── index-cropped.png │ │ │ │ │ ├── index-hide_caret-disabled.png │ │ │ │ │ ├── index-hide_caret-enabled.png │ │ │ │ │ ├── index-vips.webp │ │ │ │ │ ├── index-without-img-cropped.png │ │ │ │ │ ├── index.png │ │ │ │ │ ├── index_with_skip_area_as_array_of_css.png │ │ │ │ │ ├── index_with_skip_area_as_array_of_css_and_p.png │ │ │ │ │ └── record_screenshot │ │ │ │ │ ├── record_index │ │ │ │ │ └── 00_index.png │ │ │ │ │ ├── record_index_as_webp │ │ │ │ │ └── 00_index-vips.webp │ │ │ │ │ ├── record_index_cropped │ │ │ │ │ └── 00_index-cropped.png │ │ │ │ │ └── record_index_with_stability │ │ │ │ │ └── 00_index.png │ │ │ │ └── macos │ │ │ │ ├── cuprite │ │ │ │ ├── cropped_screenshot.png │ │ │ │ ├── index-blur_active_element-disabled.png │ │ │ │ ├── index-blur_active_element-enabled.png │ │ │ │ ├── index-cropped.png │ │ │ │ ├── index-hide_caret-disabled.png │ │ │ │ ├── index-hide_caret-enabled.png │ │ │ │ ├── index-vips.webp │ │ │ │ ├── index-without-img-cropped.png │ │ │ │ ├── index.png │ │ │ │ ├── index_with_skip_area_as_array_of_css.png │ │ │ │ ├── index_with_skip_area_as_array_of_css_and_p.png │ │ │ │ └── record_screenshot │ │ │ │ │ ├── record_index │ │ │ │ │ └── 00_index.png │ │ │ │ │ ├── record_index_as_webp │ │ │ │ │ └── 00_index-vips.webp │ │ │ │ │ ├── record_index_cropped │ │ │ │ │ └── 00_index-cropped.png │ │ │ │ │ └── record_index_with_stability │ │ │ │ │ └── 00_index.png │ │ │ │ ├── selenium_chrome_headless │ │ │ │ ├── cropped_screenshot.png │ │ │ │ ├── index-blur_active_element-disabled.png │ │ │ │ ├── index-blur_active_element-enabled.png │ │ │ │ ├── index-cropped.png │ │ │ │ ├── index-hide_caret-disabled.png │ │ │ │ ├── index-hide_caret-enabled.png │ │ │ │ ├── index-vips.webp │ │ │ │ ├── index-without-img-cropped.png │ │ │ │ ├── index.png │ │ │ │ ├── index_with_skip_area_as_array_of_css.png │ │ │ │ ├── index_with_skip_area_as_array_of_css_and_p.png │ │ │ │ └── record_screenshot │ │ │ │ │ ├── record_index │ │ │ │ │ └── 00_index.png │ │ │ │ │ ├── record_index_as_webp │ │ │ │ │ └── 00_index-vips.webp │ │ │ │ │ ├── record_index_cropped │ │ │ │ │ └── 00_index-cropped.png │ │ │ │ │ └── record_index_with_stability │ │ │ │ │ └── 00_index.png │ │ │ │ └── selenium_headless │ │ │ │ ├── cropped_screenshot.png │ │ │ │ ├── index-blur_active_element-disabled.png │ │ │ │ ├── index-blur_active_element-enabled.png │ │ │ │ ├── index-cropped.png │ │ │ │ ├── index-hide_caret-disabled.png │ │ │ │ ├── index-hide_caret-enabled.png │ │ │ │ ├── index-vips.webp │ │ │ │ ├── index-without-img-cropped.png │ │ │ │ ├── index.png │ │ │ │ ├── index_with_skip_area_as_array_of_css.png │ │ │ │ ├── index_with_skip_area_as_array_of_css_and_p.png │ │ │ │ └── record_screenshot │ │ │ │ ├── record_index │ │ │ │ └── 00_index.png │ │ │ │ ├── record_index_as_webp │ │ │ │ └── 00_index-vips.webp │ │ │ │ ├── record_index_cropped │ │ │ │ └── 00_index-cropped.png │ │ │ │ └── record_index_with_stability │ │ │ │ └── 00_index.png │ │ ├── image.png │ │ ├── index-with-anim.html │ │ ├── index-without-img.html │ │ └── index.html │ ├── comparisons │ │ ├── a-and-b.diff.png │ │ ├── a-and-b.heatmap.diff.png │ │ ├── a-and-c.diff.png │ │ ├── b-and-a.diff.png │ │ └── c-and-a.diff.png │ ├── images │ │ ├── a.png │ │ ├── a.webp │ │ ├── a_cropped.png │ │ ├── b.png │ │ ├── c.png │ │ ├── d.png │ │ ├── portrait.png │ │ └── portrait_b.png │ └── rspec_spec.rb ├── integration │ ├── browser_screenshot_test.rb │ ├── record_screenshot_test.rb │ ├── rspec_test.rb │ └── test_methods_system_test.rb ├── support │ ├── capybara_screenshot_diff │ │ └── dsl_stub.rb │ ├── non_minitest_assertions.rb │ ├── screenshoter_stub.rb │ ├── setup_capybara.rb │ ├── setup_capybara_drivers.rb │ ├── setup_rails_app.rb │ ├── stub_test_methods.rb │ ├── test_doubles.rb │ └── test_helpers.rb ├── system_test_case.rb ├── test_helper.rb └── unit │ ├── area_calculator_test.rb │ ├── comparison_loader_test.rb │ ├── diff_test.rb │ ├── difference_finder_test.rb │ ├── difference_test.rb │ ├── drivers │ ├── chunky_png_driver_test.rb │ ├── utils_test.rb │ └── vips_driver_test.rb │ ├── dsl_test.rb │ ├── image_compare_test.rb │ ├── image_preprocessor_test.rb │ ├── region_test.rb │ ├── reporters │ └── default_test.rb │ ├── screenshot_namer_test.rb │ ├── screenshot_test.rb │ ├── screenshoter_test.rb │ ├── snap_manager_test.rb │ ├── stable_screenshoter_test.rb │ └── vcs_test.rb └── tmp └── .keep /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup-ruby-and-dependencies/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.github/actions/setup-ruby-and-dependencies/action.yml -------------------------------------------------------------------------------- /.github/actions/upload-screenshots/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.github/actions/upload-screenshots/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.gitignore -------------------------------------------------------------------------------- /.standard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.standard.yml -------------------------------------------------------------------------------- /.yamllint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/.yamllint.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/bin/console -------------------------------------------------------------------------------- /bin/dtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/bin/dtest -------------------------------------------------------------------------------- /bin/install-vips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/bin/install-vips -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/standardrb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/bin/standardrb -------------------------------------------------------------------------------- /capybara-screenshot-diff.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/capybara-screenshot-diff.gemspec -------------------------------------------------------------------------------- /gemfiles/edge_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/gemfiles/edge_gems.rb -------------------------------------------------------------------------------- /gemfiles/rails70_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/gemfiles/rails70_gems.rb -------------------------------------------------------------------------------- /gemfiles/rails71_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/gemfiles/rails71_gems.rb -------------------------------------------------------------------------------- /gemfiles/rails72_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/gemfiles/rails72_gems.rb -------------------------------------------------------------------------------- /gemfiles/rails80_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/gemfiles/rails80_gems.rb -------------------------------------------------------------------------------- /gemfiles/rails81_gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/gemfiles/rails81_gems.rb -------------------------------------------------------------------------------- /gems.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/gems.rb -------------------------------------------------------------------------------- /lib/capybara-screenshot-diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara-screenshot-diff.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/area_calculator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/area_calculator.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/browser_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/browser_helpers.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/capture_strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/capture_strategy.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/comparison.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/comparison.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/comparison_loader.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/comparison_loader.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/cucumber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/cucumber.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/difference.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/difference.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/difference_finder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/difference_finder.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/drivers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/drivers.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/drivers/base_driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/drivers/base_driver.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/drivers/chunky_png_driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/drivers/chunky_png_driver.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/drivers/vips_driver.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/drivers/vips_driver.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/image_compare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/image_compare.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/image_preprocessor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/image_preprocessor.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/os.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/os.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/region.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/region.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/reporters/default.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/reporters/default.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/screenshot_coordinator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/screenshot_coordinator.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/screenshot_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/screenshot_matcher.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/screenshot_namer_dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/screenshot_namer_dsl.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/screenshoter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/screenshoter.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/stable_capture_strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/stable_capture_strategy.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/stable_screenshoter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/stable_screenshoter.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/standard_capture_strategy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/standard_capture_strategy.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/utils.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/utils.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/vcs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/vcs.rb -------------------------------------------------------------------------------- /lib/capybara/screenshot/diff/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara/screenshot/diff/version.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/attempts_reporter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/attempts_reporter.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/backtrace_filter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/backtrace_filter.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/cucumber.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/cucumber.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/dsl.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/dsl.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/error_with_filtered_backtrace.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/error_with_filtered_backtrace.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/minitest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/minitest.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/rspec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/rspec.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/screenshot_assertion.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/screenshot_assertion.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/screenshot_namer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/screenshot_namer.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/snap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/snap.rb -------------------------------------------------------------------------------- /lib/capybara_screenshot_diff/snap_manager.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/lib/capybara_screenshot_diff/snap_manager.rb -------------------------------------------------------------------------------- /scripts/benchmark/find_region_benchmark.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/scripts/benchmark/find_region_benchmark.rb -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/cropped_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/cropped_screenshot.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index-blur_active_element-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index-blur_active_element-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index-blur_active_element-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index-blur_active_element-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index-hide_caret-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index-hide_caret-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index-hide_caret-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index-hide_caret-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index-without-img-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index-without-img-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index_with_skip_area_as_array_of_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index_with_skip_area_as_array_of_css.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/index_with_skip_area_as_array_of_css_and_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/index_with_skip_area_as_array_of_css_and_p.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/record_screenshot/record_index/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/record_screenshot/record_index/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/record_screenshot/record_index_as_webp/00_index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/record_screenshot/record_index_as_webp/00_index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/record_screenshot/record_index_cropped/00_index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/record_screenshot/record_index_cropped/00_index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/cuprite/record_screenshot/record_index_with_stability/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/cuprite/record_screenshot/record_index_with_stability/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/cropped_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/cropped_screenshot.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-blur_active_element-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-blur_active_element-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-blur_active_element-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-blur_active_element-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-hide_caret-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-hide_caret-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-hide_caret-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-hide_caret-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-without-img-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index-without-img-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index_with_skip_area_as_array_of_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index_with_skip_area_as_array_of_css.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index_with_skip_area_as_array_of_css_and_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/index_with_skip_area_as_array_of_css_and_p.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/record_screenshot/record_index/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/record_screenshot/record_index/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/record_screenshot/record_index_as_webp/00_index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/record_screenshot/record_index_as_webp/00_index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/record_screenshot/record_index_cropped/00_index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/record_screenshot/record_index_cropped/00_index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/record_screenshot/record_index_with_stability/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_chrome_headless/record_screenshot/record_index_with_stability/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/cropped_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/cropped_screenshot.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index-blur_active_element-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index-blur_active_element-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index-blur_active_element-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index-blur_active_element-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index-hide_caret-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index-hide_caret-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index-hide_caret-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index-hide_caret-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index-without-img-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index-without-img-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index_with_skip_area_as_array_of_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index_with_skip_area_as_array_of_css.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/index_with_skip_area_as_array_of_css_and_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/index_with_skip_area_as_array_of_css_and_p.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/record_screenshot/record_index/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/record_screenshot/record_index/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/record_screenshot/record_index_as_webp/00_index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/record_screenshot/record_index_as_webp/00_index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/record_screenshot/record_index_cropped/00_index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/record_screenshot/record_index_cropped/00_index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/linux/selenium_headless/record_screenshot/record_index_with_stability/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/linux/selenium_headless/record_screenshot/record_index_with_stability/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/cropped_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/cropped_screenshot.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index-blur_active_element-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index-blur_active_element-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index-blur_active_element-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index-blur_active_element-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index-hide_caret-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index-hide_caret-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index-hide_caret-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index-hide_caret-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index-without-img-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index-without-img-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index_with_skip_area_as_array_of_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index_with_skip_area_as_array_of_css.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/index_with_skip_area_as_array_of_css_and_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/index_with_skip_area_as_array_of_css_and_p.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/record_screenshot/record_index/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/record_screenshot/record_index/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/record_screenshot/record_index_as_webp/00_index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/record_screenshot/record_index_as_webp/00_index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/record_screenshot/record_index_cropped/00_index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/record_screenshot/record_index_cropped/00_index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/cuprite/record_screenshot/record_index_with_stability/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/cuprite/record_screenshot/record_index_with_stability/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/cropped_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/cropped_screenshot.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-blur_active_element-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-blur_active_element-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-blur_active_element-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-blur_active_element-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-hide_caret-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-hide_caret-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-hide_caret-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-hide_caret-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-without-img-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index-without-img-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index_with_skip_area_as_array_of_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index_with_skip_area_as_array_of_css.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index_with_skip_area_as_array_of_css_and_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/index_with_skip_area_as_array_of_css_and_p.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/record_screenshot/record_index/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/record_screenshot/record_index/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/record_screenshot/record_index_as_webp/00_index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/record_screenshot/record_index_as_webp/00_index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/record_screenshot/record_index_cropped/00_index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/record_screenshot/record_index_cropped/00_index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/record_screenshot/record_index_with_stability/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_chrome_headless/record_screenshot/record_index_with_stability/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/cropped_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/cropped_screenshot.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index-blur_active_element-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index-blur_active_element-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index-blur_active_element-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index-blur_active_element-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index-hide_caret-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index-hide_caret-disabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index-hide_caret-enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index-hide_caret-enabled.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index-without-img-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index-without-img-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index_with_skip_area_as_array_of_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index_with_skip_area_as_array_of_css.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/index_with_skip_area_as_array_of_css_and_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/index_with_skip_area_as_array_of_css_and_p.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/record_screenshot/record_index/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/record_screenshot/record_index/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/record_screenshot/record_index_as_webp/00_index-vips.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/record_screenshot/record_index_as_webp/00_index-vips.webp -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/record_screenshot/record_index_cropped/00_index-cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/record_screenshot/record_index_cropped/00_index-cropped.png -------------------------------------------------------------------------------- /test/fixtures/app/doc/screenshots/macos/selenium_headless/record_screenshot/record_index_with_stability/00_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/doc/screenshots/macos/selenium_headless/record_screenshot/record_index_with_stability/00_index.png -------------------------------------------------------------------------------- /test/fixtures/app/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/image.png -------------------------------------------------------------------------------- /test/fixtures/app/index-with-anim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/index-with-anim.html -------------------------------------------------------------------------------- /test/fixtures/app/index-without-img.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/index-without-img.html -------------------------------------------------------------------------------- /test/fixtures/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/app/index.html -------------------------------------------------------------------------------- /test/fixtures/comparisons/a-and-b.diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/comparisons/a-and-b.diff.png -------------------------------------------------------------------------------- /test/fixtures/comparisons/a-and-b.heatmap.diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/comparisons/a-and-b.heatmap.diff.png -------------------------------------------------------------------------------- /test/fixtures/comparisons/a-and-c.diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/comparisons/a-and-c.diff.png -------------------------------------------------------------------------------- /test/fixtures/comparisons/b-and-a.diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/comparisons/b-and-a.diff.png -------------------------------------------------------------------------------- /test/fixtures/comparisons/c-and-a.diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/comparisons/c-and-a.diff.png -------------------------------------------------------------------------------- /test/fixtures/images/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/images/a.png -------------------------------------------------------------------------------- /test/fixtures/images/a.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/images/a.webp -------------------------------------------------------------------------------- /test/fixtures/images/a_cropped.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/images/a_cropped.png -------------------------------------------------------------------------------- /test/fixtures/images/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/images/b.png -------------------------------------------------------------------------------- /test/fixtures/images/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/images/c.png -------------------------------------------------------------------------------- /test/fixtures/images/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/images/d.png -------------------------------------------------------------------------------- /test/fixtures/images/portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/images/portrait.png -------------------------------------------------------------------------------- /test/fixtures/images/portrait_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/images/portrait_b.png -------------------------------------------------------------------------------- /test/fixtures/rspec_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/fixtures/rspec_spec.rb -------------------------------------------------------------------------------- /test/integration/browser_screenshot_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/integration/browser_screenshot_test.rb -------------------------------------------------------------------------------- /test/integration/record_screenshot_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/integration/record_screenshot_test.rb -------------------------------------------------------------------------------- /test/integration/rspec_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/integration/rspec_test.rb -------------------------------------------------------------------------------- /test/integration/test_methods_system_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/integration/test_methods_system_test.rb -------------------------------------------------------------------------------- /test/support/capybara_screenshot_diff/dsl_stub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/support/capybara_screenshot_diff/dsl_stub.rb -------------------------------------------------------------------------------- /test/support/non_minitest_assertions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/support/non_minitest_assertions.rb -------------------------------------------------------------------------------- /test/support/screenshoter_stub.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/support/screenshoter_stub.rb -------------------------------------------------------------------------------- /test/support/setup_capybara.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/support/setup_capybara.rb -------------------------------------------------------------------------------- /test/support/setup_capybara_drivers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/support/setup_capybara_drivers.rb -------------------------------------------------------------------------------- /test/support/setup_rails_app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/support/setup_rails_app.rb -------------------------------------------------------------------------------- /test/support/stub_test_methods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/support/stub_test_methods.rb -------------------------------------------------------------------------------- /test/support/test_doubles.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/support/test_doubles.rb -------------------------------------------------------------------------------- /test/support/test_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/support/test_helpers.rb -------------------------------------------------------------------------------- /test/system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/system_test_case.rb -------------------------------------------------------------------------------- /test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/test_helper.rb -------------------------------------------------------------------------------- /test/unit/area_calculator_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/area_calculator_test.rb -------------------------------------------------------------------------------- /test/unit/comparison_loader_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/comparison_loader_test.rb -------------------------------------------------------------------------------- /test/unit/diff_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/diff_test.rb -------------------------------------------------------------------------------- /test/unit/difference_finder_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/difference_finder_test.rb -------------------------------------------------------------------------------- /test/unit/difference_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/difference_test.rb -------------------------------------------------------------------------------- /test/unit/drivers/chunky_png_driver_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/drivers/chunky_png_driver_test.rb -------------------------------------------------------------------------------- /test/unit/drivers/utils_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/drivers/utils_test.rb -------------------------------------------------------------------------------- /test/unit/drivers/vips_driver_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/drivers/vips_driver_test.rb -------------------------------------------------------------------------------- /test/unit/dsl_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/dsl_test.rb -------------------------------------------------------------------------------- /test/unit/image_compare_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/image_compare_test.rb -------------------------------------------------------------------------------- /test/unit/image_preprocessor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/image_preprocessor_test.rb -------------------------------------------------------------------------------- /test/unit/region_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/region_test.rb -------------------------------------------------------------------------------- /test/unit/reporters/default_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/reporters/default_test.rb -------------------------------------------------------------------------------- /test/unit/screenshot_namer_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/screenshot_namer_test.rb -------------------------------------------------------------------------------- /test/unit/screenshot_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/screenshot_test.rb -------------------------------------------------------------------------------- /test/unit/screenshoter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/screenshoter_test.rb -------------------------------------------------------------------------------- /test/unit/snap_manager_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/snap_manager_test.rb -------------------------------------------------------------------------------- /test/unit/stable_screenshoter_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/stable_screenshoter_test.rb -------------------------------------------------------------------------------- /test/unit/vcs_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snap-diff/snap_diff-capybara/HEAD/test/unit/vcs_test.rb -------------------------------------------------------------------------------- /tmp/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------