90 | spies.onClick('Maria')}>Hello Maria
91 | ,
92 | );
93 | const node = wrapper.getDOMNode().shadowRoot.querySelector('div');
94 | node.click();
95 | t.is(spies.onClick.callCount, 1);
96 | t.true(spies.onClick.calledWith('Maria'));
97 | });
98 |
99 | test('It should be able to apply styles to the shadow boundary components;', (t) => {
100 | const wrapper = mount(
101 |