script.sh 317 B

123456789101112131415
  1. #!/bin/bash
  2. set -euo pipefail
  3. echo "Waiting for 5 seconds..."
  4. sleep 5
  5. echo "Running TypeScript tests..."
  6. yarn run ts-mocha -p ./tsconfig.json -t 1000000 clients/typescript/test/main.ts
  7. echo "Running C# tests..."
  8. cd clients/csharp/Solana.Unity.Bolt.Test
  9. dotnet run --configuration Release
  10. echo "Tests completed."