Click on the play button next to list items to run them.
Fork this val
Create new tests in any of vals (and export them) (see @pomdtr/example_test)
import { assertEquals } from "https://deno.land/std@0.216.0/assert/mod.ts";
import { Test } from "https://esm.town/v/<account>/test_explorer";
export const exampleTestSuccess = new Test(() => {
assertEquals(1 + 1, 2);
});
export const exampleTestFailure = new Test(() => {
assertEquals(1 + 1, 3);
});
https://<account>-test_explorer.web.val.run
to run your test
ℹ️ You probably want to protect your test explorer behind an authentication middleware like @pomdtr/basicAuth
In order to define a test, the user need to import the Test class from https://val.town/v/<account>/Test
.
So we can use the api to search for vals containing the https://val.town/v/<account>/Test
string to locate the vals containing tests.
Next, we need to extract the tests from the val exports. We use exported instanceof Test
to filter them (at some point we will probably use static analysis for this).