mirror of
https://github.com/microsoft/edit.git
synced 2025-12-23 07:07:25 +00:00
7 lines
131 B
Bash
Executable file
7 lines
131 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$ROOT_DIR"
|
|
|
|
cargo test "$@"
|