Skip to content

Commit 4dad9e6

Browse files
committed
fix: remove malformed xcodebuild args from simctl mock JSON
The mock simctl list devices JSON incorrectly included '-derivedDataPath' and DERIVED_DATA_DIR as array elements alongside device objects. These xcodebuild command arguments do not belong in the simctl JSON response and corrupted the mock data structure with unrealistic input.
1 parent daf00b3 commit 4dad9e6

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/mcp/tools/simulator/__tests__/build_run_sim.test.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,6 @@ describe('build_run_sim tool', () => {
194194
state: 'Booted',
195195
isAvailable: true,
196196
},
197-
'-derivedDataPath',
198-
DERIVED_DATA_DIR,
199197
],
200198
},
201199
}),
@@ -277,8 +275,6 @@ describe('build_run_sim tool', () => {
277275
state: 'Booted',
278276
isAvailable: true,
279277
},
280-
'-derivedDataPath',
281-
DERIVED_DATA_DIR,
282278
],
283279
},
284280
}),

0 commit comments

Comments
 (0)