mirror of
https://github.com/denoland/std.git
synced 2024-11-22 04:59:05 +00:00
fix(test): skip test cases which cause serde_v8 error (#828)
This commit is contained in:
parent
d42b5d141c
commit
b224ab580d
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user