ci: improve test coverage

This commit is contained in:
Dax Raad
2025-09-27 03:04:42 -04:00
parent d0043a4a78
commit 4b94d98f89
6 changed files with 54 additions and 448 deletions

View File

@@ -596,13 +596,13 @@ export function replace(content: string, oldString: string, newString: string, r
for (const replacer of [
SimpleReplacer,
LineTrimmedReplacer,
// BlockAnchorReplacer,
BlockAnchorReplacer,
WhitespaceNormalizedReplacer,
IndentationFlexibleReplacer,
EscapeNormalizedReplacer,
// TrimmedBoundaryReplacer,
// ContextAwareReplacer,
// MultiOccurrenceReplacer,
TrimmedBoundaryReplacer,
ContextAwareReplacer,
MultiOccurrenceReplacer,
]) {
for (const search of replacer(content, oldString)) {
const index = content.indexOf(search)