You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
363 B
14 lines
363 B
const { assert } = require("chai");
|
|
|
|
const { decode, encode } = require("../lib");
|
|
|
|
describe("UTF8", () => {
|
|
it("should f-1(f(x)) = x", () => {
|
|
assert.equal(decode(encode("foo")), "foo");
|
|
assert.equal(decode(encode("éé")), "éé");
|
|
|
|
// TODO(sven): utf8 encoder fails here
|
|
// assert.equal(decode(encode("🤣见見")), "🤣见見");
|
|
});
|
|
});
|