Skip to content

Commit

Permalink
Merge pull request #5958 from solidusio/backport/v4.1/pr-5956
Browse files Browse the repository at this point in the history
[v4.1] Test app task: Allow passing in user class
  • Loading branch information
tvdeyen authored Dec 3, 2024
2 parents 8dacd47 + 85d2a34 commit a550e6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/lib/spree/testing_support/extension_rake.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

desc "Generates a dummy app for testing an extension"
namespace :extension do
task :test_app, [:user_class] do |_t, _args|
task :test_app, [:user_class] do |_t, args|
Spree::DummyGeneratorHelper.inject_extension_requirements = true
Rake::Task['common:test_app'].invoke
Rake::Task['common:test_app'].invoke(args[:user_class])
end
end

0 comments on commit a550e6d

Please sign in to comment.