(viewer: Viewer, insight: specs.Insight)
| 23 | } |
| 24 | |
| 25 | export function compareProps(viewer: Viewer, insight: specs.Insight) { |
| 26 | const currentInsight = viewer.getInsight(); |
| 27 | const a = addNullable(currentInsight, { ...viewer.insight.signalValues, ...currentInsight.signalValues }); |
| 28 | const b = addNullable(insight, { ...a.signalValues, ...insight.signalValues }); |
| 29 | const compare = deepCompare(a, b); |
| 30 | return { a, b, compare }; |
| 31 | } |
| 32 | |
| 33 | function _SandDanceReact(props: Props) { |
| 34 |
no test coverage detected