diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index 08d26f152..4343e8c6e 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -27,6 +27,8 @@
<% end %>
<% end %>
+ <%= render "govuk_web_banners/recruitment_banner" %>
+
<%= yield :header %>
diff --git a/test/integration/recruitment_banner_test.rb b/test/integration/recruitment_banner_test.rb
index 88fcb14ce..4abf5d87b 100644
--- a/test/integration/recruitment_banner_test.rb
+++ b/test/integration/recruitment_banner_test.rb
@@ -24,8 +24,8 @@ class RecruitmentBannerTest < ActionDispatch::IntegrationTest
stub_content_store_has_item(content_item["base_path"], content_item.to_json)
visit content_item["base_path"]
- assert_not page.has_css?(".gem-c-intervention")
- assert_not page.has_link?("Sign up to take part in user research (opens in a new tab)", href: "https://survey.take-part-in-research.service.gov.uk/jfe/form/SV_2bggmg6xlelrO0S")
+ assert page.has_css?(".gem-c-intervention")
+ assert page.has_link?("Sign up to take part in user research (opens in a new tab)", href: "https://survey.take-part-in-research.service.gov.uk/jfe/form/SV_2bggmg6xlelrO0S")
end
end
@@ -47,8 +47,8 @@ class RecruitmentBannerTest < ActionDispatch::IntegrationTest
stub_content_store_has_item(content_item["base_path"], content_item.to_json)
visit content_item["base_path"]
- assert_not page.has_css?(".gem-c-intervention")
- assert_not page.has_link?("Sign up to take part in user research (opens in a new tab)", href: "https://survey.take-part-in-research.service.gov.uk/jfe/form/SV_2bggmg6xlelrO0S")
+ assert page.has_css?(".gem-c-intervention")
+ assert page.has_link?("Sign up to take part in user research (opens in a new tab)", href: "https://survey.take-part-in-research.service.gov.uk/jfe/form/SV_2bggmg6xlelrO0S")
end
end