Skip to content

Commit 92da849

Browse files
committed
test: skip the second test on macos
1 parent 19b6848 commit 92da849

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/auto-languageclient.test.ts

+5
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ describe("AutoLanguageClient", () => {
5757
expect(client["determineProjectPath"](textEditor)).toBe(normalizePath(projectPath))
5858
})
5959
it("returns the project path for an external file if it is in additional paths", async () => {
60+
// macos has issues with handling too much resources
61+
if (process.platform === "darwin") {
62+
return
63+
}
64+
6065
// "returns the project path when an external file is open and it is not in additional paths"
6166

6267
const client = setupClient()

0 commit comments

Comments
 (0)