We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b529ba commit fd02f8bCopy full SHA for fd02f8b
web_src/js/utils/glob.test.ts
@@ -16,7 +16,7 @@ async function loadGlobTestData(): Promise<{caseNames: string[], caseDataMap: Re
16
const key = parts[0].trim();
17
let value = parts[1].trim();
18
value = value.substring(1, value.length - 1); // remove quotes
19
- value = value.replace(/\\\\/g, '\\').replaceAll(/\\\//g, '/');
+ value = value.replace(/\\\//g, '/').replace(/\\\\/g, '\\');
20
caseDataMap[key] = value;
21
if (key.startsWith('pattern_')) caseNameMap[key.substring('pattern_'.length)] = true;
22
}
0 commit comments