Skip to content

Commit 2a969b9

Browse files
author
sunjieming
committed
Remove console.log
1 parent bab2e8b commit 2a969b9

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

tests/arrays.test.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ describe('arrays', () => {
2828
it('should pass each item into the transform function', () => {
2929
const arr = [1, 2, 3];
3030
const mappedArr = arrayMethods.map(arr, n => (n * 2));
31-
console.log('>>>mappedArr', mappedArr);
3231
expect(mappedArr).toEqual([2, 4, 6]);
3332
});
3433
});

0 commit comments

Comments
 (0)