Skip to content

Commit 893d29b

Browse files
committed
test: fix Windows list-files expected file path
1 parent f8e26a2 commit 893d29b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/services/glob/__tests__/list-files.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ describe("list-files symlink support", () => {
157157
expect(args).toContain("!**/tmp/**")
158158
expect(args[args.length - 1]).toBe(".")
159159
expect(options).toMatchObject({ cwd: path.resolve(testDir) })
160-
expect(files).toContain(path.join(testDir, "nested", "deep", "deep-nested-file.ts"))
160+
expect(files).toContain(path.resolve(testDir, "nested", "deep", "deep-nested-file.ts"))
161161
})
162162

163163
it("should ensure first-level directories are included when limit is reached", async () => {

0 commit comments

Comments
 (0)