File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1212 end
1313
1414 scenario "error locations are links" do
15- pending "Double notifications block the text to click on"
16-
1715 within ( :output , :mir ) do
1816 click_link ( 'src/main.rs:4:14: 4:19' , match : :first )
1917 end
Original file line number Diff line number Diff line change 5858Capybara . default_driver = Capybara . javascript_driver = :firefox
5959Capybara . app_host = "http://#{ ADDRESS } :#{ PORT } "
6060Capybara . run_server = false
61- Capybara . default_max_wait_time = 5
61+ Capybara . default_max_wait_time = ENV . fetch ( 'CAPYBARA_WAIT' , 5 ) . to_f
6262Capybara . automatic_label_click = true
6363
6464Capybara ::Screenshot . register_driver ( :firefox ) do |driver , path |
Original file line number Diff line number Diff line change @@ -439,6 +439,8 @@ macro_rules! docker_command {
439439fn basic_secure_docker_command ( ) -> Command {
440440 let mut cmd = docker_command ! (
441441 "run" ,
442+ "--platform" ,
443+ "linux/amd64" ,
442444 "--detach" ,
443445 "--cap-drop=ALL" ,
444446 // Needed to allow overwriting the file
You can’t perform that action at this time.
0 commit comments