Skip to content

Instantly share code, notes, and snippets.

@jbergant
Created June 16, 2020 12:11
Show Gist options
  • Select an option

  • Save jbergant/4ed44b0247376313284b1e3c6e834137 to your computer and use it in GitHub Desktop.

Select an option

Save jbergant/4ed44b0247376313284b1e3c6e834137 to your computer and use it in GitHub Desktop.
deno test
import { assertEquals } from "https://deno.land/std/testing/asserts.ts";
Deno.test("deno test", () => {
const name = "Jana";
const surname = "Bergant";
const fullname = `${name} ${surname}`;
assertEquals(fullname, "Jana Bergant");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment