#!/bin/bash
source "$ROOT_PATH"/scripts/common.sh
set -eo pipefail

run_test() {
  npm run test || handle_error "Tests failed"
}

echo_green "run test for all"
run_test || handle_error "failed to run tests"
