Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refs #37443 - find the right Edit button on the host details page #10298

Merged
merged 1 commit into from
Aug 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/integration/host_js_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@

test "edit page" do
visit host_details_page_path(@host)
click_button 'Edit'
find('.host-details-header-section').find_button('Edit').click # the Edit button for the host details, not the host comment
assert @host.hostname.start_with? page.find('#host_name').value
end

Expand Down Expand Up @@ -532,7 +532,7 @@

visit edit_host_path(host)
switch_form_tab('Parameters')
assert page.has_no_selector?(id)

Check failure on line 535 in test/integration/host_js_test.rb

View workflow job for this annotation

GitHub Actions / webpack:compile test:integration - Ruby 2.7 and Node 14 on PostgreSQL 13

Failure: test_0002_correctly override global params Expected false to be truthy.

Check failure on line 535 in test/integration/host_js_test.rb

View workflow job for this annotation

GitHub Actions / webpack:compile test:integration - Ruby 2.7 and Node 18 on PostgreSQL 13

Failure: test_0002_correctly override global params Expected false to be truthy.

Check failure on line 535 in test/integration/host_js_test.rb

View workflow job for this annotation

GitHub Actions / webpack:compile test:integration - Ruby 3.0 and Node 18 on PostgreSQL 13

Failure: test_0002_correctly override global params Expected false to be truthy.

Check failure on line 535 in test/integration/host_js_test.rb

View workflow job for this annotation

GitHub Actions / webpack:compile test:integration - Ruby 2.7 and Node 14 on PostgreSQL 13

Failure: test_0002_correctly override global params Expected false to be truthy.

Check failure on line 535 in test/integration/host_js_test.rb

View workflow job for this annotation

GitHub Actions / webpack:compile test:integration - Ruby 3.0 and Node 14 on PostgreSQL 13

Failure: test_0002_correctly override global params Expected false to be truthy.
page.find('#global_parameters_table a[title="Remove Parameter"]').hover
page.find('#global_parameters_table a[data-original-title="Remove Parameter"]').click
assert page.has_selector?(id)
Expand Down
Loading