Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

/* Any copyright is dedicated to the Public Domain.
"use strict";
const { VariablesView } = ChromeUtils.importESModule(
);
const PENDING = {
type: "object",
class: "Promise",
actor: "conn0.obj35",
extensible: true,
frozen: false,
sealed: false,
promiseState: {
state: "pending",
},
preview: {
kind: "Object",
ownProperties: {},
ownPropertiesLength: 0,
safeGetterValues: {},
},
};
const FULFILLED = {
type: "object",
class: "Promise",
actor: "conn0.obj35",
extensible: true,
frozen: false,
sealed: false,
promiseState: {
state: "fulfilled",
value: 10,
},
preview: {
kind: "Object",
ownProperties: {},
ownPropertiesLength: 0,
safeGetterValues: {},
},
};
const REJECTED = {
type: "object",
class: "Promise",
actor: "conn0.obj35",
extensible: true,
frozen: false,
sealed: false,
promiseState: {
state: "rejected",
reason: 10,
},
preview: {
kind: "Object",
ownProperties: {},
ownPropertiesLength: 0,
safeGetterValues: {},
},
};
function run_test() {
equal(VariablesView.getString(PENDING, { concise: true }), "Promise");
equal(VariablesView.getString(PENDING), 'Promise {<state>: "pending"}');
equal(VariablesView.getString(FULFILLED, { concise: true }), "Promise");
equal(
VariablesView.getString(FULFILLED),
'Promise {<state>: "fulfilled", <value>: 10}'
);
equal(VariablesView.getString(REJECTED, { concise: true }), "Promise");
equal(
VariablesView.getString(REJECTED),
'Promise {<state>: "rejected", <reason>: 10}'
);
}