diff options
Diffstat (limited to 'devtools/client/debugger/new/test/mochitest/examples/entry.js')
-rw-r--r-- | devtools/client/debugger/new/test/mochitest/examples/entry.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/devtools/client/debugger/new/test/mochitest/examples/entry.js b/devtools/client/debugger/new/test/mochitest/examples/entry.js new file mode 100644 index 0000000000..d397a966ba --- /dev/null +++ b/devtools/client/debugger/new/test/mochitest/examples/entry.js @@ -0,0 +1,16 @@ +const times2 = require("./times2"); +const { output } = require("./output"); +const opts = require("./opts"); + +output(times2(1)); +output(times2(2)); + +if(opts.extra) { + output(times2(3)); +} + +window.keepMeAlive = function() { + // This function exists to make sure this script is never garbage + // collected. It is also callable from tests. + return times2(4); +} |