tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

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";