mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
0307064927
X-Git-Commit-ID: bb02f51399059295041176769438b0f451f983bf
25 lines
682 B
JavaScript
25 lines
682 B
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
function compareArray(a, b) {
|
|
if (a.length !== b.length) {
|
|
return false;
|
|
}
|
|
for (let i = 0; i < a.length; i++) {
|
|
if (a[i] !== b[i]) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
function test() {
|
|
let currentState = JSON.parse(ss.getBrowserState());
|
|
ok(currentState.session, "session data returned by getBrowserState");
|
|
|
|
let keys = Object.keys(currentState.session);
|
|
let expectedKeys = ["lastUpdate", "startTime", "recentCrashes"];
|
|
ok(compareArray(keys.sort(), expectedKeys.sort()),
|
|
"session object from getBrowserState has correct keys");
|
|
}
|