Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: devtools/shared/tests/xpcshell/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
/**
* Ensure that each instance of the Dev Tools loader contains its own loader
* instance, and also returns unique objects. This ensures there is no sharing
* in place between loaders.
*/
function run_test() {
const loader1 = new DevToolsLoader();
const loader2 = new DevToolsLoader();
const indent1 = loader1.require("resource://devtools/shared/indentation.js");
const indent2 = loader2.require("resource://devtools/shared/indentation.js");
Assert.ok(indent1 !== indent2);
Assert.ok(loader1.loader !== loader2.loader);
Assert.ok(loader1.id !== loader2.id);
}