Skip to main content
Deno 2 is finally here 🎉️
Learn more

avs

Simplified unit testing. Inspired by ava.

Usage

import test from "https://deno.land/x/avs@v0.1.0/mod.ts"

test("main", t => {
    t.is(1 + 2, 3)
})