const { Service } = ChromeUtils.importESModule( "resource://services-sync/service.sys.mjs"
);
add_task(async function run_test() {
validate_all_future_pings();
let debug = [];
let info = [];
function augmentLogger(old) {
let d = old.debug;
let i = old.info; // For the purposes of this test we don't need to do full formatting // of the 2nd param, as the ones we care about are always strings.
old.debug = function (m, p) {
debug.push(p ? m + ": " + (p.message || p) : m);
d.call(old, m, p);
};
old.info = function (m, p) {
info.push(p ? m + ": " + (p.message || p) : m);
i.call(old, m, p);
}; return old;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.