We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe25a76 commit f3eda0aCopy full SHA for f3eda0a
spec/system/admin_update_spec.rb
@@ -11,6 +11,12 @@
11
it "displays the admin update page with the right respositories" do
12
visit("/admin/update")
13
14
+ # We are getting a blank page on CI so adding debugging steps to figure out why
15
+ if ENV["CI"]
16
+ expect(page).to have_current_path("/admin/update")
17
+ puts page.html
18
+ end
19
+
20
expect(page).to have_css("h3", exact_text: I18n.t("js.admin.docker.update_title"))
21
expect(page).to have_css("tr.repo .repo__name", exact_text: "Discourse")
22
expect(page).to have_css("tr.repo .repo__name", exact_text: "Docker Manager")
0 commit comments