7 lines
147 B
Bash
Executable File
7 lines
147 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$root"
|
|
node --test tests/Diagnostics/*.test.mjs
|