#!/bin/bash

# Master script to run all agent tests
echo "Running Agent Referral System Tests"
echo "=================================="

# Run the page accessibility tests
echo "Running page accessibility tests..."
./tests/scripts/test-agent-referral.sh

# Run the agent creation test
echo "Running agent creation test..."
./tests/scripts/test-agent-creation.sh

echo "All agent tests completed!"
