Skip to content

Commit b1f96d7

Browse files
committed
Cleanup comments
1 parent 0ce2cb6 commit b1f96d7

File tree

2 files changed

+3
-1
lines changed
  • lib/generators/cypress_on_rails/templates/spec/cypress/support
  • specs_e2e/rails_4_2

2 files changed

+3
-1
lines changed

lib/generators/cypress_on_rails/templates/spec/cypress/support/on-rails.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Cypress.Commands.add('appFixtures', function (options) {
4747
// The next is optional
4848
// beforeEach(() => {
4949
// cy.app('clean') // have a look at cypress/app_commands/clean.rb
50-
// cy.mockGraphQL(); // for GraphQL usage, see cypress/support/commands.rb
50+
// cy.mockGraphQL() // for GraphQL usage, see cypress/support/commands.rb
5151
// });
5252

5353
// comment this out if you do not want to attempt to log additional info on test fail

specs_e2e/rails_4_2/Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ source 'https://rubygems.org'
33
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
44
gem 'rails', '~> 4.2.10'
55
gem 'sprockets', '~> 3.7.2'
6+
# Solution for issue: NoMethodError: undefined method `new' for BigDecimal:Class
7+
# https://github.com/ruby/bigdecimal?tab=readme-ov-file#which-version-should-you-select
68
gem 'bigdecimal', '1.3.5'
79

810
group :development, :test do

0 commit comments

Comments
 (0)