Skip to content

Commit 61fec58

Browse files
committed
test: skip the whole test on macos
1 parent 50fe3d8 commit 61fec58

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

test/auto-languageclient.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ function setupServerManager(client = setupClient()) {
3636
describe("AutoLanguageClient", () => {
3737
describe("determineProjectPath", () => {
3838
it("returns the project path for an internal or an external file in the project", async () => {
39+
if (process.platform === "darwin") {
40+
// there is nothing OS specific about the code. It just hits the limits that MacOS can handle in this test
41+
pending("skipped on MacOS")
42+
return
43+
}
3944
const client = setupClient()
4045
const serverManager = setupServerManager(client)
4146

0 commit comments

Comments
 (0)