aboutsummaryrefslogtreecommitdiffstats
path: root/activejob
diff options
context:
space:
mode:
authoryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-12-08 13:24:22 +0900
committeryuuji.yaginuma <yuuji.yaginuma@gmail.com>2018-12-08 13:24:22 +0900
commit2e7e9fe1dc01c782a806f62365b69584c3cb7375 (patch)
treedbea878017572343c0f6ebfa7217ff7d98002b91 /activejob
parentbdc96802a7a4a8c6d183272e997430e8b9006498 (diff)
downloadrails-2e7e9fe1dc01c782a806f62365b69584c3cb7375.tar.gz
rails-2e7e9fe1dc01c782a806f62365b69584c3cb7375.tar.bz2
rails-2e7e9fe1dc01c782a806f62365b69584c3cb7375.zip
Do not require `webpacker` in Active Job integration tests
Because `skip-javascript` option is specified for the dummy application used in the integration tests. https://github.com/rails/rails/blob/bdc96802a7a4a8c6d183272e997430e8b9006498/activejob/test/support/integration/helper.rb#L14
Diffstat (limited to 'activejob')
-rw-r--r--activejob/Rakefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/activejob/Rakefile b/activejob/Rakefile
index 0f88b22e8d..2b9f89853f 100644
--- a/activejob/Rakefile
+++ b/activejob/Rakefile
@@ -28,6 +28,7 @@ namespace :test do
task "env:integration" do
ENV["AJ_INTEGRATION_TESTS"] = "1"
+ ENV["SKIP_REQUIRE_WEBPACKER"] = "true"
end
ACTIVEJOB_ADAPTERS.each do |adapter|