├── .claude └── commands │ └── update-changelog.md ├── .github ├── FUNDING.yml └── workflows │ ├── claude-code-review.yml │ ├── claude.yml │ └── ruby.yml ├── .gitignore ├── .rspec ├── CHANGELOG.md ├── CLAUDE.md ├── Gemfile ├── LICENSE ├── README.md ├── RELEASING.md ├── Rakefile ├── cypress-on-rails.gemspec ├── docs ├── BEST_PRACTICES.md ├── DX_IMPROVEMENTS.md ├── PLAYWRIGHT_GUIDE.md ├── RELEASE.md ├── TROUBLESHOOTING.md ├── VCR_GUIDE.md ├── authentication.md └── factory_bot_associations.md ├── lib ├── cypress-on-rails.rb ├── cypress │ └── smart_factory_wrapper.rb ├── cypress_dev.rb ├── cypress_dev │ ├── middleware.rb │ └── smart_factory_wrapper.rb ├── cypress_on_rails │ ├── command_executor.rb │ ├── configuration.rb │ ├── middleware.rb │ ├── middleware_config.rb │ ├── railtie.rb │ ├── server.rb │ ├── simple_rails_factory.rb │ ├── smart_factory_wrapper.rb │ ├── state_reset_middleware.rb │ ├── vcr │ │ ├── insert_eject_middleware.rb │ │ ├── middleware_helpers.rb │ │ └── use_cassette_middleware.rb │ └── version.rb ├── generators │ └── cypress_on_rails │ │ ├── install_generator.rb │ │ └── templates │ │ ├── config │ │ └── initializers │ │ │ └── cypress_on_rails.rb.erb │ │ └── spec │ │ ├── cypress.config.js │ │ ├── cypress │ │ ├── e2e │ │ │ └── rails_examples │ │ │ │ ├── advance_factory_bot.cy.js │ │ │ │ ├── other.cy.js │ │ │ │ ├── using_factory_bot.cy.js │ │ │ │ ├── using_fixtures.cy.js │ │ │ │ ├── using_scenarios.cy.js │ │ │ │ └── using_vcr.cy.js │ │ └── support │ │ │ ├── commands.js │ │ │ ├── index.js.erb │ │ │ └── on-rails.js │ │ ├── e2e │ │ ├── app_commands │ │ │ ├── activerecord_fixtures.rb │ │ │ ├── clean.rb │ │ │ ├── eval.rb │ │ │ ├── factory_bot.rb │ │ │ ├── log_fail.rb │ │ │ └── scenarios │ │ │ │ └── basic.rb │ │ └── e2e_helper.rb.erb │ │ ├── playwright.config.js │ │ └── playwright │ │ ├── e2e │ │ └── rails_examples │ │ │ └── using_scenarios.spec.js │ │ └── support │ │ ├── index.js.erb │ │ └── on-rails.js └── tasks │ └── cypress.rake ├── plugin ├── .gitignore ├── cypress │ └── plugins │ │ └── index.js ├── package.json └── support │ └── index.js ├── rakelib ├── release.rake ├── task_helpers.rb └── update_changelog.rake ├── spec ├── cypress_on_rails │ ├── command_executor │ │ ├── e2e_helper.rb │ │ ├── test_command.rb │ │ └── test_command_with_options.rb │ ├── command_executor_spec.rb │ ├── configuration_spec.rb │ ├── middleware_spec.rb │ ├── railtie_spec.rb │ ├── simple_rails_factory_spec.rb │ ├── smart_factory_wrapper_spec.rb │ └── vcr │ │ ├── insert_eject_middleware_spec.rb │ │ └── use_cassette_middleware_spec.rb ├── generators │ └── install_generator_spec.rb └── spec_helper.rb ├── specs_e2e ├── cypress.config.js ├── playwright.config.js ├── rails_6_1 │ ├── .gitattributes │ ├── .gitignore │ ├── Gemfile │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ └── posts_controller.rb │ │ ├── helpers │ │ │ └── posts_helper.rb │ │ ├── jobs │ │ │ └── application_job.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ └── post.rb │ │ └── views │ │ │ ├── layouts │ │ │ └── application.html.erb │ │ │ └── posts │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── setup │ │ ├── spring │ │ └── yarn │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── credentials.yml.enc │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── application_controller_renderer.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ ├── permissions_policy.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── master.key │ │ ├── puma.rb │ │ ├── routes.rb │ │ └── storage.yml │ ├── db │ │ └── migrate │ │ │ └── 20180621085832_create_posts.rb │ ├── package.json │ ├── playwright-report │ │ └── index.html │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ └── robots.txt │ ├── test-results │ │ └── .last-run.json │ ├── test.sh │ ├── test │ │ ├── controllers │ │ │ └── posts_controller_test.rb │ │ ├── cypress_fixtures │ │ │ └── posts.yml │ │ ├── fixtures │ │ │ └── posts.yml │ │ └── models │ │ │ └── post_test.rb │ └── vendor │ │ └── .keep ├── rails_7_2 │ ├── .gitattributes │ ├── .gitignore │ ├── .rubocop.yml │ ├── Gemfile │ ├── Rakefile │ ├── app │ │ ├── assets │ │ │ └── stylesheets │ │ │ │ └── application.css │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ └── posts_controller.rb │ │ ├── helpers │ │ │ └── posts_helper.rb │ │ ├── jobs │ │ │ └── application_job.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ └── post.rb │ │ └── views │ │ │ ├── layouts │ │ │ └── application.html.erb │ │ │ └── posts │ │ │ ├── _form.html.erb │ │ │ ├── edit.html.erb │ │ │ ├── index.html.erb │ │ │ ├── new.html.erb │ │ │ └── show.html.erb │ ├── bin │ │ ├── brakeman │ │ ├── bundle │ │ ├── importmap │ │ ├── rails │ │ ├── rake │ │ └── setup │ ├── config.ru │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── credentials.yml.enc │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── importmap.rb │ │ ├── initializers │ │ │ ├── content_security_policy.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ └── permissions_policy.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── master.key │ │ ├── puma.rb │ │ ├── routes.rb │ │ └── storage.yml │ ├── db │ │ ├── migrate │ │ │ └── 20180621085832_create_posts.rb │ │ ├── seeds.rb │ │ ├── test.sqlite3-shm │ │ └── test.sqlite3-wal │ ├── package.json │ ├── playwright-report │ │ └── index.html │ ├── public │ │ ├── 404.html │ │ ├── 406-unsupported-browser.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── icon.png │ │ ├── icon.svg │ │ └── robots.txt │ ├── storage │ │ └── test.sqlite3 │ ├── test-results │ │ └── .last-run.json │ ├── test.sh │ ├── test │ │ ├── controllers │ │ │ └── posts_controller_test.rb │ │ ├── cypress_fixtures │ │ │ └── posts.yml │ │ ├── fixtures │ │ │ └── posts.yml │ │ └── models │ │ │ └── post_test.rb │ └── vendor │ │ ├── .keep │ │ └── javascript │ │ └── .keep └── rails_8 │ ├── .gitattributes │ ├── .gitignore │ ├── .rubocop.yml │ ├── Gemfile │ ├── README.md │ ├── Rakefile │ ├── app │ ├── assets │ │ └── stylesheets │ │ │ └── application.css │ ├── controllers │ │ ├── application_controller.rb │ │ └── posts_controller.rb │ ├── helpers │ │ └── posts_helper.rb │ ├── jobs │ │ └── application_job.rb │ ├── models │ │ ├── application_record.rb │ │ └── post.rb │ └── views │ │ ├── layouts │ │ └── application.html.erb │ │ └── posts │ │ ├── _form.html.erb │ │ ├── edit.html.erb │ │ ├── index.html.erb │ │ ├── new.html.erb │ │ └── show.html.erb │ ├── bin │ ├── brakeman │ ├── bundle │ ├── dev │ ├── importmap │ ├── rails │ ├── rake │ ├── setup │ └── thrust │ ├── config.ru │ ├── config │ ├── application.rb │ ├── boot.rb │ ├── cable.yml │ ├── cache.yml │ ├── credentials.yml.enc │ ├── database.yml │ ├── deploy.yml │ ├── environment.rb │ ├── environments │ │ ├── development.rb │ │ ├── production.rb │ │ └── test.rb │ ├── importmap.rb │ ├── initializers │ │ ├── content_security_policy.rb │ │ ├── filter_parameter_logging.rb │ │ └── inflections.rb │ ├── locales │ │ └── en.yml │ ├── master.key │ ├── puma.rb │ ├── queue.yml │ ├── recurring.yml │ ├── routes.rb │ └── storage.yml │ ├── db │ ├── cable_schema.rb │ ├── cache_schema.rb │ ├── migrate │ │ └── 20180621085832_create_posts.rb │ ├── queue_schema.rb │ └── seeds.rb │ ├── package.json │ ├── playwright-report │ └── index.html │ ├── public │ ├── 400.html │ ├── 404.html │ ├── 406-unsupported-browser.html │ ├── 422.html │ ├── 500.html │ ├── icon.png │ ├── icon.svg │ └── robots.txt │ ├── storage │ ├── .keep │ ├── test.sqlite3 │ ├── test.sqlite3-shm │ └── test.sqlite3-wal │ ├── test-results │ └── .last-run.json │ ├── test.sh │ ├── test │ ├── application_system_test_case.rb │ ├── controllers │ │ └── posts_controller_test.rb │ ├── cypress_fixtures │ │ └── posts.yml │ ├── fixtures │ │ └── posts.yml │ ├── models │ │ └── post_test.rb │ └── test_helper.rb │ └── vendor │ ├── .keep │ └── javascript │ └── .keep └── tmp └── pids └── .gitkeep /.claude/commands/update-changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/.claude/commands/update-changelog.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [shakacode] 2 | -------------------------------------------------------------------------------- /.github/workflows/claude-code-review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/.github/workflows/claude-code-review.yml -------------------------------------------------------------------------------- /.github/workflows/claude.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/.github/workflows/claude.yml -------------------------------------------------------------------------------- /.github/workflows/ruby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/.github/workflows/ruby.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --require spec_helper 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/Rakefile -------------------------------------------------------------------------------- /cypress-on-rails.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/cypress-on-rails.gemspec -------------------------------------------------------------------------------- /docs/BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/docs/BEST_PRACTICES.md -------------------------------------------------------------------------------- /docs/DX_IMPROVEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/docs/DX_IMPROVEMENTS.md -------------------------------------------------------------------------------- /docs/PLAYWRIGHT_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/docs/PLAYWRIGHT_GUIDE.md -------------------------------------------------------------------------------- /docs/RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/docs/RELEASE.md -------------------------------------------------------------------------------- /docs/TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/docs/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /docs/VCR_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/docs/VCR_GUIDE.md -------------------------------------------------------------------------------- /docs/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/docs/authentication.md -------------------------------------------------------------------------------- /docs/factory_bot_associations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/docs/factory_bot_associations.md -------------------------------------------------------------------------------- /lib/cypress-on-rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress-on-rails.rb -------------------------------------------------------------------------------- /lib/cypress/smart_factory_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress/smart_factory_wrapper.rb -------------------------------------------------------------------------------- /lib/cypress_dev.rb: -------------------------------------------------------------------------------- 1 | require 'cypress-on-rails' 2 | -------------------------------------------------------------------------------- /lib/cypress_dev/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_dev/middleware.rb -------------------------------------------------------------------------------- /lib/cypress_dev/smart_factory_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_dev/smart_factory_wrapper.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/command_executor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/command_executor.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/configuration.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/configuration.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/middleware.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/middleware_config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/middleware_config.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/railtie.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/server.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/server.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/simple_rails_factory.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/simple_rails_factory.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/smart_factory_wrapper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/smart_factory_wrapper.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/state_reset_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/state_reset_middleware.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/vcr/insert_eject_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/vcr/insert_eject_middleware.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/vcr/middleware_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/vcr/middleware_helpers.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/vcr/use_cassette_middleware.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/cypress_on_rails/vcr/use_cassette_middleware.rb -------------------------------------------------------------------------------- /lib/cypress_on_rails/version.rb: -------------------------------------------------------------------------------- 1 | module CypressOnRails 2 | VERSION = '1.20.0'.freeze 3 | end 4 | -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/config/initializers/cypress_on_rails.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/config/initializers/cypress_on_rails.rb.erb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress.config.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/advance_factory_bot.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/advance_factory_bot.cy.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/other.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/other.cy.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_factory_bot.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_factory_bot.cy.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_fixtures.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_fixtures.cy.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_scenarios.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_scenarios.cy.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_vcr.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress/e2e/rails_examples/using_vcr.cy.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress/support/commands.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress/support/index.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress/support/index.js.erb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/cypress/support/on-rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/cypress/support/on-rails.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/activerecord_fixtures.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/activerecord_fixtures.rb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/clean.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/clean.rb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/eval.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/eval.rb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/factory_bot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/factory_bot.rb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/log_fail.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/log_fail.rb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/scenarios/basic.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/e2e/app_commands/scenarios/basic.rb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/e2e/e2e_helper.rb.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/e2e/e2e_helper.rb.erb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/playwright.config.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/playwright/e2e/rails_examples/using_scenarios.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/playwright/e2e/rails_examples/using_scenarios.spec.js -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/playwright/support/index.js.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/playwright/support/index.js.erb -------------------------------------------------------------------------------- /lib/generators/cypress_on_rails/templates/spec/playwright/support/on-rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/generators/cypress_on_rails/templates/spec/playwright/support/on-rails.js -------------------------------------------------------------------------------- /lib/tasks/cypress.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/lib/tasks/cypress.rake -------------------------------------------------------------------------------- /plugin/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /plugin/cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/plugin/cypress/plugins/index.js -------------------------------------------------------------------------------- /plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/plugin/package.json -------------------------------------------------------------------------------- /plugin/support/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/plugin/support/index.js -------------------------------------------------------------------------------- /rakelib/release.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/rakelib/release.rake -------------------------------------------------------------------------------- /rakelib/task_helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/rakelib/task_helpers.rb -------------------------------------------------------------------------------- /rakelib/update_changelog.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/rakelib/update_changelog.rake -------------------------------------------------------------------------------- /spec/cypress_on_rails/command_executor/e2e_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/cypress_on_rails/command_executor/e2e_helper.rb -------------------------------------------------------------------------------- /spec/cypress_on_rails/command_executor/test_command.rb: -------------------------------------------------------------------------------- 1 | DummyTest.values << 'hello' 2 | -------------------------------------------------------------------------------- /spec/cypress_on_rails/command_executor/test_command_with_options.rb: -------------------------------------------------------------------------------- 1 | DummyTest.values << command_options 2 | -------------------------------------------------------------------------------- /spec/cypress_on_rails/command_executor_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/cypress_on_rails/command_executor_spec.rb -------------------------------------------------------------------------------- /spec/cypress_on_rails/configuration_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/cypress_on_rails/configuration_spec.rb -------------------------------------------------------------------------------- /spec/cypress_on_rails/middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/cypress_on_rails/middleware_spec.rb -------------------------------------------------------------------------------- /spec/cypress_on_rails/railtie_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/cypress_on_rails/railtie_spec.rb -------------------------------------------------------------------------------- /spec/cypress_on_rails/simple_rails_factory_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/cypress_on_rails/simple_rails_factory_spec.rb -------------------------------------------------------------------------------- /spec/cypress_on_rails/smart_factory_wrapper_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/cypress_on_rails/smart_factory_wrapper_spec.rb -------------------------------------------------------------------------------- /spec/cypress_on_rails/vcr/insert_eject_middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/cypress_on_rails/vcr/insert_eject_middleware_spec.rb -------------------------------------------------------------------------------- /spec/cypress_on_rails/vcr/use_cassette_middleware_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/cypress_on_rails/vcr/use_cassette_middleware_spec.rb -------------------------------------------------------------------------------- /spec/generators/install_generator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/generators/install_generator_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /specs_e2e/cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/cypress.config.js -------------------------------------------------------------------------------- /specs_e2e/playwright.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/playwright.config.js -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/.gitattributes -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/.gitignore -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/Gemfile -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/Rakefile -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/helpers/posts_helper.rb: -------------------------------------------------------------------------------- 1 | module PostsHelper 2 | end 3 | -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/jobs/application_job.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/models/application_record.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/models/post.rb: -------------------------------------------------------------------------------- 1 | class Post < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/views/posts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/views/posts/_form.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/views/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/views/posts/edit.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/views/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/views/posts/index.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/views/posts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/views/posts/new.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/app/views/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/app/views/posts/show.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/bin/bundle -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/bin/rails -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/bin/rake -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/bin/setup -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/bin/spring -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/bin/yarn -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config.ru -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/application.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/boot.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/cable.yml -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/credentials.yml.enc -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/database.yml -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/environment.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/environments/development.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/environments/production.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/environments/test.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/initializers/inflections.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/locales/en.yml -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/master.key: -------------------------------------------------------------------------------- 1 | d4410d4dc7e27ed1b7657c233947edd6 -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/puma.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/routes.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/config/storage.yml -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/db/migrate/20180621085832_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/db/migrate/20180621085832_create_posts.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/package.json -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/playwright-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/playwright-report/index.html -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/public/404.html -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/public/422.html -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/public/500.html -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/public/robots.txt -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/test-results/.last-run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/test-results/.last-run.json -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/test.sh -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/test/controllers/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/test/controllers/posts_controller_test.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/test/cypress_fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/test/cypress_fixtures/posts.yml -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/test/fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/test/fixtures/posts.yml -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/test/models/post_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_6_1/test/models/post_test.rb -------------------------------------------------------------------------------- /specs_e2e/rails_6_1/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/.gitattributes -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/.gitignore -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/.rubocop.yml -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/Gemfile -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/Rakefile -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/helpers/posts_helper.rb: -------------------------------------------------------------------------------- 1 | module PostsHelper 2 | end 3 | -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/jobs/application_job.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/models/application_record.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/models/post.rb: -------------------------------------------------------------------------------- 1 | class Post < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/views/posts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/views/posts/_form.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/views/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/views/posts/edit.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/views/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/views/posts/index.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/views/posts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/views/posts/new.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/app/views/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/app/views/posts/show.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/bin/brakeman -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/bin/bundle -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/bin/importmap -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/bin/rails -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/bin/rake -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/bin/setup -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config.ru -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/application.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/boot.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/cable.yml -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/credentials.yml.enc -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/database.yml -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/environment.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/environments/development.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/environments/production.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/environments/test.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/importmap.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/initializers/inflections.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/initializers/permissions_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/initializers/permissions_policy.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/locales/en.yml -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/master.key: -------------------------------------------------------------------------------- 1 | 5b6ca964fe3f4c95d39f82330b15718d -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/puma.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/routes.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/config/storage.yml -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/db/migrate/20180621085832_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/db/migrate/20180621085832_create_posts.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/db/seeds.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/db/test.sqlite3-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/db/test.sqlite3-shm -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/db/test.sqlite3-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/db/test.sqlite3-wal -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/package.json -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/playwright-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/playwright-report/index.html -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/public/404.html -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/public/406-unsupported-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/public/406-unsupported-browser.html -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/public/422.html -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/public/500.html -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/public/icon.png -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/public/icon.svg -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/public/robots.txt -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/storage/test.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/storage/test.sqlite3 -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/test-results/.last-run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/test-results/.last-run.json -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/test.sh -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/test/controllers/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/test/controllers/posts_controller_test.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/test/cypress_fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/test/cypress_fixtures/posts.yml -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/test/fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/test/fixtures/posts.yml -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/test/models/post_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_7_2/test/models/post_test.rb -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs_e2e/rails_7_2/vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs_e2e/rails_8/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/.gitattributes -------------------------------------------------------------------------------- /specs_e2e/rails_8/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/.gitignore -------------------------------------------------------------------------------- /specs_e2e/rails_8/.rubocop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/.rubocop.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/Gemfile -------------------------------------------------------------------------------- /specs_e2e/rails_8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/README.md -------------------------------------------------------------------------------- /specs_e2e/rails_8/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/Rakefile -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/controllers/posts_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/controllers/posts_controller.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/helpers/posts_helper.rb: -------------------------------------------------------------------------------- 1 | module PostsHelper 2 | end 3 | -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/jobs/application_job.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/jobs/application_job.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/models/application_record.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/models/post.rb: -------------------------------------------------------------------------------- 1 | class Post < ApplicationRecord 2 | end 3 | -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/views/posts/_form.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/views/posts/_form.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/views/posts/edit.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/views/posts/edit.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/views/posts/index.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/views/posts/index.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/views/posts/new.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/views/posts/new.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_8/app/views/posts/show.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/app/views/posts/show.html.erb -------------------------------------------------------------------------------- /specs_e2e/rails_8/bin/brakeman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/bin/brakeman -------------------------------------------------------------------------------- /specs_e2e/rails_8/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/bin/bundle -------------------------------------------------------------------------------- /specs_e2e/rails_8/bin/dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/bin/dev -------------------------------------------------------------------------------- /specs_e2e/rails_8/bin/importmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/bin/importmap -------------------------------------------------------------------------------- /specs_e2e/rails_8/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/bin/rails -------------------------------------------------------------------------------- /specs_e2e/rails_8/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/bin/rake -------------------------------------------------------------------------------- /specs_e2e/rails_8/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/bin/setup -------------------------------------------------------------------------------- /specs_e2e/rails_8/bin/thrust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/bin/thrust -------------------------------------------------------------------------------- /specs_e2e/rails_8/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config.ru -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/application.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/boot.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/cable.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/cache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/cache.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/credentials.yml.enc -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/database.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/deploy.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/environment.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/environments/development.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/environments/production.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/environments/test.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/importmap.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/importmap.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/initializers/inflections.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/locales/en.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/master.key: -------------------------------------------------------------------------------- 1 | 736ebc816482b7db1bc172090daf90b1 -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/puma.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/queue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/queue.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/recurring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/recurring.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/routes.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/config/storage.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/db/cable_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/db/cable_schema.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/db/cache_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/db/cache_schema.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/db/migrate/20180621085832_create_posts.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/db/migrate/20180621085832_create_posts.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/db/queue_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/db/queue_schema.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/db/seeds.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/package.json -------------------------------------------------------------------------------- /specs_e2e/rails_8/playwright-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/playwright-report/index.html -------------------------------------------------------------------------------- /specs_e2e/rails_8/public/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/public/400.html -------------------------------------------------------------------------------- /specs_e2e/rails_8/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/public/404.html -------------------------------------------------------------------------------- /specs_e2e/rails_8/public/406-unsupported-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/public/406-unsupported-browser.html -------------------------------------------------------------------------------- /specs_e2e/rails_8/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/public/422.html -------------------------------------------------------------------------------- /specs_e2e/rails_8/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/public/500.html -------------------------------------------------------------------------------- /specs_e2e/rails_8/public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/public/icon.png -------------------------------------------------------------------------------- /specs_e2e/rails_8/public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/public/icon.svg -------------------------------------------------------------------------------- /specs_e2e/rails_8/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/public/robots.txt -------------------------------------------------------------------------------- /specs_e2e/rails_8/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs_e2e/rails_8/storage/test.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/storage/test.sqlite3 -------------------------------------------------------------------------------- /specs_e2e/rails_8/storage/test.sqlite3-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/storage/test.sqlite3-shm -------------------------------------------------------------------------------- /specs_e2e/rails_8/storage/test.sqlite3-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/storage/test.sqlite3-wal -------------------------------------------------------------------------------- /specs_e2e/rails_8/test-results/.last-run.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/test-results/.last-run.json -------------------------------------------------------------------------------- /specs_e2e/rails_8/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/test.sh -------------------------------------------------------------------------------- /specs_e2e/rails_8/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/test/application_system_test_case.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/test/controllers/posts_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/test/controllers/posts_controller_test.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/test/cypress_fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/test/cypress_fixtures/posts.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/test/fixtures/posts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/test/fixtures/posts.yml -------------------------------------------------------------------------------- /specs_e2e/rails_8/test/models/post_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/test/models/post_test.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shakacode/cypress-playwright-on-rails/HEAD/specs_e2e/rails_8/test/test_helper.rb -------------------------------------------------------------------------------- /specs_e2e/rails_8/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs_e2e/rails_8/vendor/javascript/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/pids/.gitkeep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------