Skip to content
Draft
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
22 changes: 22 additions & 0 deletions review_sidebar_test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
"""Test file for Devin Review sidebar E2E test (PR #19284 in devin-webapp).

This PR exists to verify that when a new commit is pushed while viewing
the PR review page, the sidebar section cards do NOT disappear.

Commit 1: this file is added.
Commit 2 (pushed while page is open): a second line is appended below.
"""


def first_commit_marker() -> str:
return "commit-1"


def second_commit_marker() -> str:
"""Added in commit 2 — pushed while the review page is open."""
return "commit-2"


def third_commit_marker() -> str:
"""Added in commit 3 — pushed while staging.itsdev.in page is open (negative control)."""
return "commit-3"