summaryrefslogtreecommitdiffstats
path: root/devtools/shared/tests/unit/test_require.js
blob: 005e5665633e0c272123041b04b12bd9213b8c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

// Test require

// Ensure that DevtoolsLoader.require doesn't spawn multiple
// loader/modules when early cached
function testBug1091706() {
  let loader = new DevToolsLoader();
  let require = loader.require;

  let indent1 = require("devtools/shared/indentation");
  let indent2 = require("devtools/shared/indentation");

  do_check_true(indent1 === indent2);
}

function run_test() {
  testBug1091706();
}