···5555 scripts/generate-flatpak-go-modules.py
56565757# Run unit tests
5858-test-routing:
5959- go test -v ./internal/routing
6060-6161-test-config:
6262- go test -v ./internal/config
6363-6464-test-browser:
6565- go test -v ./internal/browser
6666-6767-test: test-routing test-config test-browser
5858+test:
5959+ go test ./internal/...
68606961# Run tests with coverage report
7070-test-routing-coverage:
6262+test-coverage:
7163 @echo "Running tests with coverage..."
7272- go test -v -coverprofile=coverage.out ./internal/routing
6464+ go test -coverprofile=coverage.out ./internal/...
7365 go tool cover -func=coverage.out
7466 @echo ""
7567 @echo "To view HTML coverage report, run: go tool cover -html=coverage.out"
7676-7777-test-coverage: test-config test-browser test-routing-coverage
78687969# Build and install Flatpak (development version)
8070flatpak: