12 lines
145 B
Bash
Executable File
12 lines
145 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#MISE description="Run project tests"
|
|
|
|
set -e
|
|
|
|
source "$(dirname "$0")/../_helpers.sh"
|
|
|
|
ensure_working_directory!
|
|
|
|
mix test
|