From b1aaa9a98d903e7bc2a5ae2155e81ffbc1b94c49 Mon Sep 17 00:00:00 2001 From: Matthew Breedlove Date: Sun, 10 Aug 2025 01:35:54 -0400 Subject: [PATCH] Removing unused test script --- test-edit.sh | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 test-edit.sh diff --git a/test-edit.sh b/test-edit.sh deleted file mode 100644 index 69ee5e2..0000000 --- a/test-edit.sh +++ /dev/null @@ -1,43 +0,0 @@ -#!/bin/bash - -# Create a test settings file -cat > test-settings.json << 'EOF' -{ - "lines": [ - [ - { - "id": "1", - "type": "custom-command", - "commandPath": "echo test", - "color": "yellow" - }, - { - "id": "2", - "type": "custom-text", - "customText": "Hello World" - } - ] - ], - "colors": { - "model": "cyan", - "gitBranch": "magenta", - "separator": "dim" - } -} -EOF - -# Create test directory and copy settings -mkdir -p ~/.config/ccstatusline -cp test-settings.json ~/.config/ccstatusline/settings.json - -echo "Starting TUI with test settings..." -echo "Try editing a custom command or custom text item to test the cursor movement" -echo "Press Ctrl+C to exit" - -# Run the TUI -timeout 2 bun run src/ccstatusline.ts 2>/dev/null || true - -# Clean up -rm test-settings.json -echo "" -echo "Test completed" \ No newline at end of file