File tree 2 files changed +3
-1
lines changed
lib/generators/cypress_on_rails/templates/spec/cypress/support
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ Cypress.Commands.add('appFixtures', function (options) {
47
47
// The next is optional
48
48
// beforeEach(() => {
49
49
// 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
51
51
// });
52
52
53
53
// comment this out if you do not want to attempt to log additional info on test fail
Original file line number Diff line number Diff line change @@ -3,6 +3,8 @@ source 'https://rubygems.org'
3
3
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
4
4
gem 'rails' , '~> 4.2.10'
5
5
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
6
8
gem 'bigdecimal' , '1.3.5'
7
9
8
10
group :development , :test do
You can’t perform that action at this time.
0 commit comments