#!/bin/bash # Run all go-crm tests # Usage: ./run-tests.sh # Or: make test SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" cd "$SCRIPT_DIR" go test ./... -v "$@"