File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 12
12
end
13
13
14
14
scenario "error locations are links" do
15
- pending "Double notifications block the text to click on"
16
-
17
15
within ( :output , :mir ) do
18
16
click_link ( 'src/main.rs:4:14: 4:19' , match : :first )
19
17
end
Original file line number Diff line number Diff line change 58
58
Capybara . default_driver = Capybara . javascript_driver = :firefox
59
59
Capybara . app_host = "http://#{ ADDRESS } :#{ PORT } "
60
60
Capybara . run_server = false
61
- Capybara . default_max_wait_time = 5
61
+ Capybara . default_max_wait_time = ENV . fetch ( 'CAPYBARA_WAIT' , 5 ) . to_f
62
62
Capybara . automatic_label_click = true
63
63
64
64
Capybara ::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 {
439
439
fn basic_secure_docker_command ( ) -> Command {
440
440
let mut cmd = docker_command ! (
441
441
"run" ,
442
+ "--platform" ,
443
+ "linux/amd64" ,
442
444
"--detach" ,
443
445
"--cap-drop=ALL" ,
444
446
// Needed to allow overwriting the file
You can’t perform that action at this time.
0 commit comments