Created
June 16, 2020 12:11
-
-
Save jbergant/4ed44b0247376313284b1e3c6e834137 to your computer and use it in GitHub Desktop.
deno test
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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