Skip to content

Instantly share code, notes, and snippets.

@crookse
Created November 22, 2019 11:58
Show Gist options
  • Save crookse/62a2b673f1dec855b43ceaa30b81ae04 to your computer and use it in GitHub Desktop.
Save crookse/62a2b673f1dec855b43ceaa30b81ae04 to your computer and use it in GitHub Desktop.
Deno Unit Testing - Named test without the name field
test("name of my test", () => {
let actual = new MyClass();
assertEquals(actual.hello(), "world");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment