summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/unit/test_startup_nosession_async.js
blob: 5185b02d68baddd7440ae855e0a3694f49e43899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */


// Test nsISessionStartup.sessionType in the following scenario:
// - no sessionstore.js;
// - the session store has been loaded, so no need to go
//    through the synchronous fallback

function run_test() {
  do_get_profile();
  // Initialize the profile (the session startup uses it)

  do_test_pending();
  let startup = Cc["@mozilla.org/browser/sessionstartup;1"].
    getService(Ci.nsISessionStartup);

  afterSessionStartupInitialization(function cb() {
    do_check_eq(startup.sessionType, Ci.nsISessionStartup.NO_SESSION);
    do_test_finished();
  });
}