summaryrefslogtreecommitdiffstats
path: root/services/common/tests/unit/test_utils_utf8.js
blob: aa075873b9b737a76c166d42dbfa8756ab6e1f7e (plain)
1
2
3
4
5
6
7
8
9
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

function run_test() {
  let str = "Umlaute: \u00FC \u00E4\n"; // Umlaute: ü ä
  let encoded = CommonUtils.encodeUTF8(str);
  let decoded = CommonUtils.decodeUTF8(encoded);
  Assert.equal(decoded, str);
}