We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a77089 commit c46b132Copy full SHA for c46b132
1 file changed
__tests__/html2/adaptiveCard/rerender.html
@@ -111,9 +111,9 @@
111
112
// THEN: the Adaptive Card is re-rendered resulting in a single DOM mutation
113
expect(observedMutations.length).toBe(1);
114
- expect(observedMutations.[0].type).toBe('childList');
115
- expect(observedMutations.[0].addedNodes[0]).toBe(adaptiveCardEl.children[0]);
116
- expect(observedMutations.[0].removedNodes[0]).toBe(currentRenderedChild);
+ expect(observedMutations[0].type).toBe('childList');
+ expect(observedMutations[0].addedNodes[0]).toBe(adaptiveCardEl.children[0]);
+ expect(observedMutations[0].removedNodes[0]).toBe(currentRenderedChild);
117
118
await host.snapshot('local');
119
});
0 commit comments