(id, path, value)
| 113 | await mountTestApp(); |
| 114 | |
| 115 | function overrideProps(id, path, value) { |
| 116 | const rendererID = utils.getRendererID(); |
| 117 | bridge.send('overrideValueAtPath', { |
| 118 | id, |
| 119 | path, |
| 120 | rendererID, |
| 121 | type: 'props', |
| 122 | value, |
| 123 | }); |
| 124 | flushPendingUpdates(); |
| 125 | } |
| 126 | |
| 127 | overrideProps(classID, ['shallow'], 'updated'); |
| 128 | expect(committedClassProps).toStrictEqual({ |
no test coverage detected