From d928c0ca31d6ec8533d5fab5d084ad3708f63ad5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Wed, 14 Aug 2019 22:12:35 +0200 Subject: feat: add overloaded form of unit test declaration (denoland/deno_std#563) Original: https://github.com/denoland/deno_std/commit/bd146e0188dbd2c4a802e0af6e6b0705675c4abb --- testing/test.ts | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'testing/test.ts') diff --git a/testing/test.ts b/testing/test.ts index 8c86791ba..3a35be1e9 100644 --- a/testing/test.ts +++ b/testing/test.ts @@ -263,4 +263,9 @@ test(async function testingThrowsAsyncMsgNotIncludes(): Promise { assert(didThrow); }); +test("test fn overloading", (): void => { + // just verifying that you can use this test definition syntax + assert(true); +}); + runIfMain(import.meta); -- cgit v1.2.3