Add basic header to SDG goals view

This commit is contained in:
Javi Martín
2020-12-19 17:54:03 +01:00
parent 910acff624
commit a73ab57cef
5 changed files with 28 additions and 0 deletions

View File

@@ -31,4 +31,12 @@ describe "SDG Goals", :js do
expect(page).to have_current_path sdg_goal_path(7)
end
end
describe "Show" do
scenario "shows the SDG" do
visit sdg_goal_path(15)
within(".sdg-goal header") { expect(page).to have_content "Life on Land" }
end
end
end