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

debuggerModule.js « testModules « test - github.com/twbs/rewire.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 926c6079aee785d383ad461fe5108aca5d49c9b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict"; // run code in ES5 strict mode

// Add a breakpoint on line 6 and on line 11 and debug "debug.test.js" to test if the IDE stops at these points.
// Watch also the variable someVar that is injected by rewire. It will be undefined at this point because
// all injections are executed at the end of the module.
// It's already visible because of hoisting: http://net.tutsplus.com/tutorials/javascript-ajax/quick-tip-javascript-hoisting-explained/)
var someNumber = 0;

module.exports = function () {
    // In this line someVar will be defined.
    someNumber++;
    someVar;
};