0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

re-enable the "HugeLines" test case (#6006)

This commit is contained in:
uki00a 2020-06-01 05:04:19 +09:00 committed by GitHub
parent d89692161a
commit 0ce6394aca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -385,7 +385,6 @@ x,,,
"#ignore\n".repeat(10000) + "@".repeat(5000) + "," + "*".repeat(5000),
Output: [["@".repeat(5000), "*".repeat(5000)]],
Comment: "#",
ignore: true, // TODO(#4521)
},
{
Name: "QuoteWithTrailingCRLF",
@ -455,7 +454,6 @@ x,,,
];
for (const t of testCases) {
Deno.test({
ignore: !!t.ignore,
name: `[CSV] ${t.Name}`,
async fn(): Promise<void> {
let comma = ",";