test-mocked-module.js (264B)
1 /* Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ */ 3 4 "use strict"; 5 6 const methodToMock = function () { 7 return "Original value"; 8 }; 9 10 exports.methodToMock = methodToMock; 11 exports.someProperty = "someProperty";