summaryrefslogtreecommitdiffstats
path: root/browser/components/sessionstore/test/unit/test_startup_nosession_async.js
blob: 259c393e63a670e0c7891e7a2cde744f5b718803 (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/ */

// Test SessionStartup.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() {
  // Initialize the profile (the session startup uses it)
  do_get_profile();

  do_test_pending();

  afterSessionStartupInitialization(function cb() {
    Assert.equal(SessionStartup.sessionType, SessionStartup.NO_SESSION);
    do_test_finished();
  });
}