blob: 561695903334ff46410732ad497b0a62dd05a3c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
function test () {
let loader = makeLoader();
let module = Module("./main", gTestPath);
let require = Require(loader, module);
try {
let Model = require("./cant-find-me");
ok(false, "requiring a JS module that doesn't exist should throw");
}
catch (e) {
ok(e, "requiring a JS module that doesn't exist should throw");
}
/*
* Relative resource:// URI of JS
*/
let { square } = require("./math");
is(square(5), 25, "loads relative URI of JS");
/*
* Absolute resource:// URI of JS
*/
let { has } = require("resource://gre/modules/commonjs/sdk/util/array");
let testArray = ['rock', 'paper', 'scissors'];
ok(has(testArray, 'rock'), "loads absolute resource:// URI of JS");
ok(!has(testArray, 'dragon'), "loads absolute resource:// URI of JS");
finish();
}
|