Replace all slashes

1a36e0b932
This commit is contained in:
Rob Lourens
2021-11-01 21:06:10 -07:00
parent 1a36e0b932
commit f30beef826
@@ -154,7 +154,7 @@ flakySuite('RawSearchService', () => {
const result = await collectResultsFromEvent(fileSearch(rawSearch, 10));
result.files.forEach(f => {
assert.strictEqual(f.path.replace(/\\/, '/'), uriPath);
assert.strictEqual(f.path.replace(/\\/g, '/'), uriPath);
});
assert.strictEqual(result.files.length, 25, 'Result');
});