Skip to content
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
9 changes: 7 additions & 2 deletions tests/test_render_gate.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,12 @@ def wait_for_event(self, *_args, **_kwargs):


def test_a_broken_probe_module_is_a_gate_finding(browser, serve):
"""A missing public export names the browser boundary instead of raising a traceback."""
"""A missing public export names the browser boundary instead of raising a traceback.

The neighboring stalled-module test owns the short deadline. This test uses the
gate's default so the module rejection, rather than the driver's timeout, supplies
the finding.
"""

def break_probe(page):
page.route(
Expand All @@ -110,7 +115,7 @@ def break_probe(page):
)

failures = render_gate_model.render_version(
primed(browser, break_probe), serve(LONG_PAGE), served_timeout_ms=500
primed(browser, break_probe), serve(LONG_PAGE)
)

assert failures
Expand Down
Loading