@@ -36,11 +36,6 @@ function setupServerManager(client = setupClient()) {
36
36
describe ( "AutoLanguageClient" , ( ) => {
37
37
describe ( "determineProjectPath" , ( ) => {
38
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
39
const client = setupClient ( )
45
40
const serverManager = setupServerManager ( client )
46
41
@@ -116,10 +111,6 @@ describe("AutoLanguageClient", () => {
116
111
} )
117
112
118
113
describe ( "getWorkspaceFolders" , ( ) => {
119
- if ( process . platform === "darwin" ) {
120
- return
121
- }
122
-
123
114
it ( "returns null when no server is running" , async ( ) => {
124
115
const workspaceFolders = await serverManager . getWorkspaceFolders ( )
125
116
expect ( workspaceFolders ) . toBeNull ( )
@@ -150,10 +141,6 @@ describe("AutoLanguageClient", () => {
150
141
} )
151
142
} )
152
143
describe ( "didChangeWorkspaceFolders" , ( ) => {
153
- if ( process . platform === "darwin" ) {
154
- return
155
- }
156
-
157
144
it ( "gives a notification if the projects change" , async ( ) => {
158
145
const projectPath = __dirname
159
146
const projectPath2 = dirname ( __dirname )
0 commit comments