Skip to content

Commit 7c3c59c

Browse files
committed
Fix cypress logger
1 parent ef7f444 commit 7c3c59c

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
import _ from "lodash";
2-
3-
export default () => {
4-
const arr = _.values(arguments);
5-
arr.unshift('[Backend API]');
6-
console.log.apply(null, arr);
1+
const log = (...args) => {
2+
const arr = args;
3+
arr.unshift("[Backend API]");
4+
console.log(...arr);
75
};
6+
7+
export default log;

0 commit comments

Comments
 (0)