| #!/bin/bashset -euo pipefailecho "Waiting for 5 seconds..."sleep 5echo "Running TypeScript tests..."yarn run ts-mocha -p ./tsconfig.json -t 1000000 clients/typescript/test/main.tsecho "Running C# tests..."cd clients/csharp/Solana.Unity.Bolt.Testdotnet run --configuration Releaseecho "Tests completed."
 |