Skip to content

Commit

Permalink
Merge pull request #5961 from solidusio/backport/v4.4/pr-5956
Browse files Browse the repository at this point in the history
[v4.4] Test app task: Allow passing in user class
  • Loading branch information
tvdeyen authored Dec 3, 2024
2 parents 1fc456f + 349eb76 commit 0519828
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 0519828

Please sign in to comment.