We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef7f444 commit 7c3c59cCopy full SHA for 7c3c59c
1 file changed
test/cypress/plugins/backendApi/logger.mjs
@@ -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);
+const log = (...args) => {
+ const arr = args;
+ arr.unshift("[Backend API]");
+ console.log(...arr);
7
};
+
+export default log;
0 commit comments