Hi. I built a test runner that doesn't have a lot of the features other test runners have.<p>Why?<p>Most test runners include a lot of features and do a lot of magic.<p>They automatically (magically?):<p>- search and include test files<p>- run the tests for you<p>- inject test methods like `describe`/`it`<p>- add a hooks system for managing `before`/`after` events<p>- use cli's to manage the auto inclusion of the test runner<p>- use event systems for capturing when tests fail/succeed/finish<p>These features can create a great foundation for writing and running tests, but they also come with their own management and overhead.<p>This library aims to provide a bare bones test runner with zero magic.<p>As such, it can run in a web browser, nodejs, deno or any other javascript interpreter.<p>It's also pretty fast, small and has zero dependencies;