Skip to content

Commit

Permalink
Replace module.exports with export
Browse files Browse the repository at this point in the history
  • Loading branch information
VickyStash committed Feb 22, 2024
1 parent 1d35230 commit 0bc177d
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions tests/e2e/utils/logger.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,4 @@ const error = (...args) => {
log(...lines);
};

module.exports = {
log,
info,
warn,
note,
error,
success,
writeToLogFile,
};
export {log, info, warn, note, error, success, writeToLogFile};

0 comments on commit 0bc177d

Please sign in to comment.