gecko/services/sync/tests/unit/test_utils_getErrorString.js
2010-09-20 18:53:08 +02:00

15 lines
388 B
JavaScript

Cu.import("resource://services-sync/util.js");
function run_test() {
let str;
// we just test whether the returned string includes the
// string "unknown", should be good enough
str = Utils.getErrorString("error.login.reason.password");
do_check_true(str.match(/unknown/i) == null);
str = Utils.getErrorString("foobar");
do_check_true(str.match(/unknown/i) != null);
}