File tree Expand file tree Collapse file tree 4 files changed +15
-6
lines changed
lib/action_dispatch/system_testing/test_helpers Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,11 @@ Lint/AmbiguousOperator:
223
223
Lint/AmbiguousRegexpLiteral :
224
224
Enabled : true
225
225
226
+ Lint/Debugger :
227
+ Enabled : true
228
+ DebuggerRequires :
229
+ - debug
230
+
226
231
Lint/DuplicateRequire :
227
232
Enabled : true
228
233
Original file line number Diff line number Diff line change 371
371
racc (~> 1.4 )
372
372
os (1.1.4 )
373
373
parallel (1.24.0 )
374
- parser (3.2.2.4 )
374
+ parser (3.3.1.0 )
375
375
ast (~> 2.4.1 )
376
376
racc
377
377
path_expander (1.1.1 )
@@ -444,19 +444,19 @@ GEM
444
444
retriable (3.1.2 )
445
445
rexml (3.2.6 )
446
446
rouge (4.2.0 )
447
- rubocop (1.59.0 )
447
+ rubocop (1.63.5 )
448
448
json (~> 2.3 )
449
449
language_server-protocol (>= 3.17.0 )
450
450
parallel (~> 1.10 )
451
- parser (>= 3.2.2.4 )
451
+ parser (>= 3.3.0.2 )
452
452
rainbow (>= 2.2.2 , < 4.0 )
453
453
regexp_parser (>= 1.8 , < 3.0 )
454
454
rexml (>= 3.2.5 , < 4.0 )
455
- rubocop-ast (>= 1.30.0 , < 2.0 )
455
+ rubocop-ast (>= 1.31.1 , < 2.0 )
456
456
ruby-progressbar (~> 1.7 )
457
457
unicode-display_width (>= 2.4.0 , < 3.0 )
458
- rubocop-ast (1.30.0 )
459
- parser (>= 3.2 .1.0 )
458
+ rubocop-ast (1.31.3 )
459
+ parser (>= 3.3 .1.0 )
460
460
rubocop-md (1.2.2 )
461
461
rubocop (>= 1.0 )
462
462
rubocop-minitest (0.34.3 )
Original file line number Diff line number Diff line change @@ -107,13 +107,15 @@ def absolute_html_path
107
107
"#{ absolute_path } .html"
108
108
end
109
109
110
+ # rubocop:disable Lint/Debugger
110
111
def save_html
111
112
page . save_page ( absolute_html_path )
112
113
end
113
114
114
115
def save_image
115
116
page . save_screenshot ( absolute_image_path )
116
117
end
118
+ # rubocop:enable Lint/Debugger
117
119
118
120
def output_type
119
121
# Environment variables have priority
Original file line number Diff line number Diff line change @@ -1309,6 +1309,7 @@ def test_fixture_file_upload
1309
1309
end
1310
1310
end
1311
1311
1312
+ # rubocop:disable Lint/Debugger
1312
1313
class PageDumpIntegrationTest < ActionDispatch ::IntegrationTest
1313
1314
class FooController < ActionController ::Base
1314
1315
def index
@@ -1392,3 +1393,4 @@ def remove_dumps
1392
1393
end
1393
1394
end
1394
1395
end
1396
+ # rubocop:enable Lint/Debugger
You can’t perform that action at this time.
0 commit comments