From 48f5f44d8f45b042301d630618569da9501d058c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Valverd=C3=A9?= Date: Thu, 1 Feb 2024 04:11:53 +0100 Subject: [PATCH] Tests --- src/tests.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tests.ts b/src/tests.ts index b94dbe6..597685e 100644 --- a/src/tests.ts +++ b/src/tests.ts @@ -50,6 +50,7 @@ class TestSuperclass { const User = extendsAndExpresses( TestSuperclass, + PrintsHelloOnNew, Identifiable(), // Identifiable() ).then(e => @@ -60,4 +61,4 @@ const User = extendsAndExpresses( } ) -new User().id +console.log(new User())