(changes: Array<any>)
| 26 | }) |
| 27 | |
| 28 | const stripVirtualOnlyUpdates = (changes: Array<any>) => |
| 29 | changes.map(normalizeChange).filter((change) => { |
| 30 | if (change.type !== `update`) { |
| 31 | return true |
| 32 | } |
| 33 | return JSON.stringify(change.value) !== JSON.stringify(change.previousValue) |
| 34 | }) |
| 35 | |
| 36 | interface TestItem { |
| 37 | id: string |
no test coverage detected