diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-06 13:51:36 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-06 16:20:45 -0600 |
| commit | ff172efef94edd9c8268d0249a39f234c2da57bc (patch) | |
| tree | d83da0989bcb6ea765f60e49cb2589e60296b677 /tests/test-integration-recording-toggle-workflow.el | |
| parent | 29f218a702fbe8ffd46397a1b91ccb08aa3ad1f1 (diff) | |
| download | dotemacs-ff172efef94edd9c8268d0249a39f234c2da57bc.tar.gz dotemacs-ff172efef94edd9c8268d0249a39f234c2da57bc.zip | |
fix(test): add missing testutil require for sanitize-org-body tests
Diffstat (limited to 'tests/test-integration-recording-toggle-workflow.el')
| -rw-r--r-- | tests/test-integration-recording-toggle-workflow.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/test-integration-recording-toggle-workflow.el b/tests/test-integration-recording-toggle-workflow.el index 0e000b685..e73ef87e3 100644 --- a/tests/test-integration-recording-toggle-workflow.el +++ b/tests/test-integration-recording-toggle-workflow.el @@ -128,7 +128,7 @@ Validates: (should (string-match-p "test-monitor" ffmpeg-cmd)) ;; Verify modeline shows recording - (should (equal " " (cj/recording-modeline-indicator))) + (should (equal " 🎤 " (cj/recording-modeline-indicator))) ;; STEP 2: Second toggle - should stop recording (cj/audio-recording-toggle nil) @@ -222,7 +222,7 @@ Validates: ;; Verify setup and recording (should setup-called) (should cj/video-recording-ffmpeg-process) - (should (equal " " (cj/recording-modeline-indicator))) + (should (equal " 🎬 " (cj/recording-modeline-indicator))) ;; Stop recording (cj/video-recording-toggle nil) @@ -267,7 +267,7 @@ Validates: ;; Verify both are recording (should cj/audio-recording-ffmpeg-process) (should cj/video-recording-ffmpeg-process) - (should (equal " " (cj/recording-modeline-indicator))) + (should (equal " 🎤🎬 " (cj/recording-modeline-indicator))) ;; Stop audio only (cj/audio-recording-toggle nil) @@ -275,7 +275,7 @@ Validates: ;; Verify only video still recording (should (null cj/audio-recording-ffmpeg-process)) (should cj/video-recording-ffmpeg-process) - (should (equal " " (cj/recording-modeline-indicator))) + (should (equal " 🎬 " (cj/recording-modeline-indicator))) ;; Stop video (cj/video-recording-toggle nil) @@ -325,7 +325,7 @@ Validates: ;; Verify recording started (should cj/audio-recording-ffmpeg-process) - (should (equal " " (cj/recording-modeline-indicator))) + (should (equal " 🎤 " (cj/recording-modeline-indicator))) ;; Wait for process to exit (sentinel should run) (sit-for 0.3) |
