We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50fe3d8 commit 61fec58Copy full SHA for 61fec58
test/auto-languageclient.test.ts
@@ -36,6 +36,11 @@ function setupServerManager(client = setupClient()) {
36
describe("AutoLanguageClient", () => {
37
describe("determineProjectPath", () => {
38
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
+ }
44
const client = setupClient()
45
const serverManager = setupServerManager(client)
46
0 commit comments