(/** @type {Record<string, unknown>} */ object)
| 211 | }; |
| 212 | |
| 213 | const clone = (/** @type {Record<string, unknown>} */ object) => { |
| 214 | const serialized = buffersSerializer.serialize(object, {}); |
| 215 | return buffersSerializer.deserialize(serialized, {}); |
| 216 | }; |
| 217 | |
| 218 | const expectSnapshotsState = ( |
| 219 | /** @type {IFs} */ fs, |
no test coverage detected