1*4c50faceSEvan Baconexport const time = jest.fn(); 2*4c50faceSEvan Bacon 3*4c50faceSEvan Baconexport const timeEnd = jest.fn(); 4*4c50faceSEvan Bacon 5*4c50faceSEvan Baconexport const error = jest.fn(); 6*4c50faceSEvan Bacon 7*4c50faceSEvan Baconexport const exception = jest.fn(); 8*4c50faceSEvan Bacon 9*4c50faceSEvan Baconexport const warn = jest.fn(); 10*4c50faceSEvan Bacon 11*4c50faceSEvan Baconexport const log = jest.fn(); 12*4c50faceSEvan Bacon 13*4c50faceSEvan Baconexport const debug = jest.fn(); 14*4c50faceSEvan Bacon 15*4c50faceSEvan Baconexport const clear = jest.fn(); 16*4c50faceSEvan Bacon 17*4c50faceSEvan Baconexport const exit = jest.fn(() => { 18*4c50faceSEvan Bacon throw new Error('EXIT_CALLED'); 19*4c50faceSEvan Bacon}); 20*4c50faceSEvan Bacon 21*4c50faceSEvan Baconexport const Log = { 22*4c50faceSEvan Bacon time, 23*4c50faceSEvan Bacon timeEnd, 24*4c50faceSEvan Bacon error, 25*4c50faceSEvan Bacon exception, 26*4c50faceSEvan Bacon warn, 27*4c50faceSEvan Bacon log, 28*4c50faceSEvan Bacon debug, 29*4c50faceSEvan Bacon clear, 30*4c50faceSEvan Bacon exit, 31*4c50faceSEvan Bacon}; 32