Skip to content

Commit

Permalink
test: skip the whole test on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Jun 11, 2021
1 parent 50fe3d8 commit 61fec58
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 @@ -36,6 +36,11 @@ function setupServerManager(client = setupClient()) {
describe("AutoLanguageClient", () => {
describe("determineProjectPath", () => {
it("returns the project path for an internal or an external file in the project", async () => {
if (process.platform === "darwin") {
// there is nothing OS specific about the code. It just hits the limits that MacOS can handle in this test
pending("skipped on MacOS")
return
}
const client = setupClient()
const serverManager = setupServerManager(client)

Expand Down

0 comments on commit 61fec58

Please sign in to comment.