1
2
3
4
5
6
export const testTesting = (async () => {
const { assertEquals } = await import(
"https://deno.land/std@0.195.0/testing/asserts.ts"
);
assertEquals(1, 2);
})();