Apply eslint auto-fix formatting to windows-path-matching test

Co-authored-by: salmanmkc <[email protected]>
This commit is contained in:
copilot-swe-agent[bot]
2025-12-11 14:03:26 +00:00
co-authored by salmanmkc
parent f4d818c7a2
commit 1cd929181f
@@ -73,7 +73,11 @@ describe('Windows path matching', () => {
// Should match .txt files at any depth // Should match .txt files at any depth
expect(pattern.match(`${currentDrive}\\file.txt`)).toBe(MatchKind.All) expect(pattern.match(`${currentDrive}\\file.txt`)).toBe(MatchKind.All)
expect(pattern.match(`${currentDrive}\\foo\\bar\\test.txt`)).toBe(MatchKind.All) expect(pattern.match(`${currentDrive}\\foo\\bar\\test.txt`)).toBe(
expect(pattern.match(`${currentDrive}\\foo\\bar\\test.js`)).toBe(MatchKind.None) MatchKind.All
)
expect(pattern.match(`${currentDrive}\\foo\\bar\\test.js`)).toBe(
MatchKind.None
)
}) })
}) })