#!/bin/bash

# bootstrap environment
source script/bootstrap

while IFS= read -r test_file; do
	node --test "$test_file"
done < <(find test -name '*_test.mjs' | sort)
