Skip to content

Commit 0bc177d

Browse files
committed
Replace module.exports with export
1 parent 1d35230 commit 0bc177d

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

tests/e2e/utils/logger.js

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,4 @@ const error = (...args) => {
6666
log(...lines);
6767
};
6868

69-
module.exports = {
70-
log,
71-
info,
72-
warn,
73-
note,
74-
error,
75-
success,
76-
writeToLogFile,
77-
};
69+
export {log, info, warn, note, error, success, writeToLogFile};

0 commit comments

Comments
 (0)