This commit is contained in:
Chayim Refael Friedman 2020-08-03 17:53:18 +03:00 committed by GitHub
parent 39693094f1
commit e9d713c007
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -281,7 +281,7 @@ Example of test:
import { assertEquals } from "https://deno.land/std@$STD_VERSION/testing/asserts.ts";
import { foo } from "./mod.ts";
Deno.test("myTestFunction" function() {
Deno.test("myTestFunction", function () {
assertEquals(foo(), { bar: "bar" });
});
```