-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: hide seekbar preview for long recordings (#18829)
* feat: hide seekbar preview for long recordings * Update UI snapshots for `chromium` (2) * Update UI snapshots for `chromium` (2) * fix metadata endpoint and use active ms * fix --------- Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
0e0d506
commit 139da53
Showing
5 changed files
with
46 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -327,12 +327,12 @@ def test_get_single_session_recording_metadata(self): | |
"click_count": 0, | ||
"keypress_count": 0, | ||
"start_url": None, | ||
"mouse_activity_count": None, | ||
"inactive_seconds": None, | ||
"active_seconds": None, | ||
"console_error_count": None, | ||
"console_log_count": None, | ||
"console_warn_count": None, | ||
"mouse_activity_count": 0, | ||
"inactive_seconds": 30, | ||
"active_seconds": 0, | ||
"console_error_count": 0, | ||
"console_log_count": 0, | ||
"console_warn_count": 0, | ||
"person": { | ||
"id": p.id, | ||
"name": "[email protected]", | ||
|