From e4a56338509545c071474a7972cdeff516d37e76 Mon Sep 17 00:00:00 2001 From: Shinwoo PARK Date: Sun, 10 Dec 2023 21:18:14 +0900 Subject: [PATCH] refactor: add comment to all test stuff --- src/test/index.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/src/test/index.ts b/src/test/index.ts index 68d556b..28430ca 100644 --- a/src/test/index.ts +++ b/src/test/index.ts @@ -285,7 +285,7 @@ class LoggedMethodsClass { * Choose Class to Test */ // const tester = new LoggedClass(); -const tester = new LoggedMethodsClass(); +// const tester = new LoggedMethodsClass(); /** * Choose Method to Test @@ -309,5 +309,9 @@ const tester = new LoggedMethodsClass(); // tester.testPriorityScopedLogging({}); // tester.testOptionalScopedLogging("asdf"); // tester.testOptionalScopedLogging(); -// tester.testShouldScopedLogging("asdf"); -tester.testShouldScopedLogging(); +// tester.testShouldScopedLogging("asdf") +// tester.testShouldScopedLogging(); + +/** + * Then run `yarn test` + */