mirror of
https://github.com/Quad4-Software/MeshChatX.git
synced 2026-08-18 09:49:09 -04:00
9 lines
197 B
Bash
Executable file
9 lines
197 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
cd "$ROOT"
|
|
|
|
echo "Running MeshMut mutation testing (frontend)"
|
|
|
|
node scripts/mutation/run.mjs "$@"
|