fix(test): skip test cases which cause serde_v8 error (#828)

This commit is contained in:
Yoshiya Hinosawa 2021-04-02 00:28:39 +09:00 committed by GitHub
parent d42b5d141c
commit b224ab580d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -271,12 +271,16 @@ const tests: Array<[string, any, string]> = [
//["%c", '\U0010ffff'.codePointAt(0), "\U0010ffff"],
// Runes that are not valid.
["%c", -1, "<22>"],
// TODO(kt3k): Disabled because of serde_v8 error
// Enable this when the issue is resolved.
// ["%c", -1, "<22>"],
// TODO(bartomieju): surrogate half, doesn't make sense in itself, how
// to determine in JS?
// ["%c", 0xDC80, "<22>"],
["%c", 0x110000, "<22>"],
["%c", 0xfffffffff, "<22>"],
// TODO(kt3k): Disabled because of serde_v8 error
// Enable this when the issue is resolved.
// ["%c", 0x110000, "<22>"],
// ["%c", 0xfffffffff, "<22>"],
// TODO(bartlomieju):
// escaped characters
// Runes that are not printable.