From 0bdba47fc73b3172120e7c040ecbf08c709c2099 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Fri, 15 Dec 2023 01:57:21 +0900 Subject: [PATCH] test: add synced logging test --- src/test/index.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/test/index.ts b/src/test/index.ts index 26d3471..2fd4422 100644 --- a/src/test/index.ts +++ b/src/test/index.ts @@ -219,6 +219,10 @@ class LoggedClass { async testLoggerRootLogging(@InjectLogger logger?: ScopedLogger) { this.testLoggerRootLogging2(logger); } + + testSyncLogging(@InjectLogger logger?: ScopedLogger) { + logger.log("synced yay"); + } } class LoggedMethodsClass { @@ -438,6 +442,11 @@ class LoggedMethodsClass { async testLoggerRootLogging(@InjectLogger logger?: ScopedLogger) { this.testLoggerRootLogging2(logger); } + + @LoggedFunction + testSyncLogging(@InjectLogger logger?: ScopedLogger) { + logger.log("synced yay"); + } } /** @@ -475,6 +484,7 @@ class LoggedMethodsClass { // tester.testRawObjectReturnLogging("asdf"); // tester.testRawValueReturnLogging("asdf"); // tester.testLoggerRootLogging(); +// tester.testSyncLogging(); /** * Then run `yarn test`