test: normalize formatted workdir TypeScript

This commit is contained in:
2026-09-03 03:18:09 +09:00
parent 70bdb2d723
commit d87441448e
+5 -3
View File
@@ -1410,10 +1410,12 @@ mod workdir_typescript_tests {
value value
.chars() .chars()
.filter_map(|character| match character { .filter_map(|character| match character {
'\r' | '\n' | ' ' | '\t' => None, character if character.is_whitespace() => None,
_ => Some(character), ',' => Some(';'),
character => Some(character),
}) })
.collect() .collect::<String>()
.replace("=|", "=")
} }
} }