(id, path)
| 347 | await mountTestApp(); |
| 348 | |
| 349 | function deletePath(id, path) { |
| 350 | const rendererID = utils.getRendererID(); |
| 351 | bridge.send('deletePath', { |
| 352 | id, |
| 353 | path, |
| 354 | rendererID, |
| 355 | type: 'props', |
| 356 | }); |
| 357 | flushPendingUpdates(); |
| 358 | } |
| 359 | |
| 360 | deletePath(classID, ['shallow']); |
| 361 | expect(committedClassProps).toStrictEqual({ |
no test coverage detected