Skip to content

Commit

Permalink
test: skip the second test on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jun 11, 2021
1 parent 19b6848 commit d58b5e7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/auto-languageclient.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ describe("AutoLanguageClient", () => {
let textEditor = (await atom.workspace.open(externalFile)) as TextEditor
/* eslint-disable-next-line dot-notation */
expect(client["determineProjectPath"](textEditor)).toBeNull()

// macos has issues with handling too much resources
if (process.platform === "darwin") {
return
}
textEditor.destroy()

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

0 comments on commit d58b5e7

Please sign in to comment.