Welcome to mirror list, hosted at ThFree Co, Russian Federation.

debug.test.js « test - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ffbacfcbd20157a120534e817813fa740dbdea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
var rewire = require("../lib/index.js");

// add breakpoints in testModules/debuggerModule.js and debug this file with your IDE to
// check if debugging works with rewire.
var debuggerModule = rewire("./testModules/debuggerModule.js");

debugger;

debuggerModule.__set__("myNumber", 1);

debuggerModule();