Removes Xcode project structure and implements Swift Package Manager with accessibility inspection commands and test framework. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
11 lines
282 B
Bash
Executable File
11 lines
282 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "=== AXorcist Test Runner ==="
|
|
echo "Killing any existing SwiftPM processes..."
|
|
|
|
# Kill any existing swift processes
|
|
pkill -f "swift" || true
|
|
pkill -f "SourceKitService" || true
|
|
|
|
echo "Starting swift test (without git clean to preserve dependencies)..."
|
|
swift test |