Skip to content

Commit d58b5e7

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

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
@@ -73,6 +73,11 @@ describe("AutoLanguageClient", () => {
7373
let textEditor = (await atom.workspace.open(externalFile)) as TextEditor
7474
/* eslint-disable-next-line dot-notation */
7575
expect(client["determineProjectPath"](textEditor)).toBeNull()
76+
77+
// macos has issues with handling too much resources
78+
if (process.platform === "darwin") {
79+
return
80+
}
7681
textEditor.destroy()
7782

7883
// "returns the project path when an external file is open and it is in additional paths"

0 commit comments

Comments
 (0)