summaryrefslogtreecommitdiffstats
path: root/services/sync/tests/unit/test_load_modules.js
blob: 8e3fcf1f3c8ab9bb957e086de0e7b362b2323a34 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

const modules = [
  "addonutils.js",
  "addonsreconciler.js",
  "browserid_identity.js",
  "constants.js",
  "engines/addons.js",
  "engines/bookmarks.js",
  "engines/clients.js",
  "engines/forms.js",
  "engines/history.js",
  "engines/passwords.js",
  "engines/prefs.js",
  "engines/tabs.js",
  "engines.js",
  "identity.js",
  "jpakeclient.js",
  "keys.js",
  "main.js",
  "notifications.js",
  "policies.js",
  "record.js",
  "resource.js",
  "rest.js",
  "service.js",
  "stages/cluster.js",
  "stages/declined.js",
  "stages/enginesync.js",
  "status.js",
  "userapi.js",
  "util.js",
];

const testingModules = [
  "fakeservices.js",
  "rotaryengine.js",
  "utils.js",
];

function run_test() {
  for (let m of modules) {
    let res = "resource://services-sync/" + m;
    _("Attempting to load " + res);
    Cu.import(res, {});
  }

  for (let m of testingModules) {
    let res = "resource://testing-common/services/sync/" + m;
    _("Attempting to load " + res);
    Cu.import(res, {});
  }
}