From 440fae5ef9386e93a87ba65cba64e9e5318710c8 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Fri, 15 Dec 2023 01:49:12 +0900 Subject: [PATCH] test: add tests for root scope arrow removal --- src/test/index.ts | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/test/index.ts b/src/test/index.ts index 5f1f62d..26d3471 100644 --- a/src/test/index.ts +++ b/src/test/index.ts @@ -211,6 +211,14 @@ class LoggedClass { logger.log(userId); return true; } + + async testLoggerRootLogging2(@InjectLogger logger?: ScopedLogger) { + logger.log("2"); + } + + async testLoggerRootLogging(@InjectLogger logger?: ScopedLogger) { + this.testLoggerRootLogging2(logger); + } } class LoggedMethodsClass { @@ -420,6 +428,16 @@ class LoggedMethodsClass { logger.log(userId); return true; } + + @LoggedFunction + async testLoggerRootLogging2(@InjectLogger logger?: ScopedLogger) { + logger.log("2"); + } + + @LoggedFunction + async testLoggerRootLogging(@InjectLogger logger?: ScopedLogger) { + this.testLoggerRootLogging2(logger); + } } /** @@ -456,6 +474,7 @@ class LoggedMethodsClass { // tester.testMissingReturnLogging("asdf"); // tester.testRawObjectReturnLogging("asdf"); // tester.testRawValueReturnLogging("asdf"); +// tester.testLoggerRootLogging(); /** * Then run `yarn test`