jest.clearAllMocks vs jest.resetAllMocks vs jest.restoreAllMocks explained
August 31, 2022 16:08
I know is been hard to remember and confuse about what these clearAllMocks, resetAllMocks and...
Array print()
August 6, 2022 16:03
How troublesome every time console.log to each array chain method result for debugging? Let's see...
How to mock function that called inside module
June 10, 2022 07:58
Problem Iets say you have the file // file.js export function b() { return...
How test script help you write a safety code?
July 29, 2020 17:33
Code without test script is like writing an essay without proofreading. End up, full of grammar mista...
Tips to create a constants file in Javascript
March 7, 2020 16:06
It shouldn't be difficult to just create a constants file and keep all your value in one place, so th...