refactor: add comment to all test stuff

This commit is contained in:
Shinwoo PARK 2023-12-10 21:18:14 +09:00
parent 8222dc9540
commit e4a5633850

View File

@ -285,7 +285,7 @@ class LoggedMethodsClass {
* Choose Class to Test * Choose Class to Test
*/ */
// const tester = new LoggedClass(); // const tester = new LoggedClass();
const tester = new LoggedMethodsClass(); // const tester = new LoggedMethodsClass();
/** /**
* Choose Method to Test * Choose Method to Test
@ -309,5 +309,9 @@ const tester = new LoggedMethodsClass();
// tester.testPriorityScopedLogging({}); // tester.testPriorityScopedLogging({});
// tester.testOptionalScopedLogging("asdf"); // tester.testOptionalScopedLogging("asdf");
// tester.testOptionalScopedLogging(); // tester.testOptionalScopedLogging();
// tester.testShouldScopedLogging("asdf"); // tester.testShouldScopedLogging("asdf")
tester.testShouldScopedLogging(); // tester.testShouldScopedLogging();
/**
* Then run `yarn test`
*/