summaryrefslogtreecommitdiffstats
path: root/services/cloudsync/tests/xpcshell/test_module.js
blob: 6d31345ed68129f27655179ed20ffaea7f24a692 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

Cu.import("resource://gre/modules/CloudSync.jsm");

function run_test () {
  run_next_test();
}

add_task(function test_module_load () {
  ok(CloudSync);
  let cloudSync = CloudSync();
  ok(cloudSync.adapters);
  ok(cloudSync.bookmarks);
  ok(cloudSync.local);
  ok(cloudSync.tabs);
});