summaryrefslogtreecommitdiff
path: root/testing/test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'testing/test.ts')
-rw-r--r--testing/test.ts5
1 files changed, 5 insertions, 0 deletions
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<void> {
assert(didThrow);
});
+test("test fn overloading", (): void => {
+ // just verifying that you can use this test definition syntax
+ assert(true);
+});
+
runIfMain(import.meta);