|
|
|
@ -15,14 +15,14 @@ export default {
|
|
|
|
|
<p>baz x: initial</p>
|
|
|
|
|
`,
|
|
|
|
|
|
|
|
|
|
test ( assert, component, target, window ) {
|
|
|
|
|
const click = new window.MouseEvent( 'click' );
|
|
|
|
|
const buttons = [ ...target.querySelectorAll( 'button' ) ];
|
|
|
|
|
async test(assert, component, target, window) {
|
|
|
|
|
const click = new window.MouseEvent('click');
|
|
|
|
|
const buttons = [...target.querySelectorAll('button')];
|
|
|
|
|
|
|
|
|
|
buttons[0].dispatchEvent( click );
|
|
|
|
|
await buttons[0].dispatchEvent(click);
|
|
|
|
|
|
|
|
|
|
assert.equal( component.x, 'p' );
|
|
|
|
|
assert.htmlEqual( target.innerHTML, `
|
|
|
|
|
assert.equal(component.x, 'p');
|
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
|
|
|
<p>x: p</p>
|
|
|
|
|
<button class="foo">foo</button>
|
|
|
|
|
<p>foo x: p</p>
|
|
|
|
@ -30,12 +30,12 @@ export default {
|
|
|
|
|
<p>bar x: p</p>
|
|
|
|
|
<button class="baz">baz</button>
|
|
|
|
|
<p>baz x: p</p>
|
|
|
|
|
` );
|
|
|
|
|
`);
|
|
|
|
|
|
|
|
|
|
buttons[1].dispatchEvent( click );
|
|
|
|
|
await buttons[1].dispatchEvent(click);
|
|
|
|
|
|
|
|
|
|
assert.equal( component.x, 'q' );
|
|
|
|
|
assert.htmlEqual( target.innerHTML, `
|
|
|
|
|
assert.equal(component.x, 'q');
|
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
|
|
|
<p>x: q</p>
|
|
|
|
|
<button class="foo">foo</button>
|
|
|
|
|
<p>foo x: q</p>
|
|
|
|
@ -43,12 +43,12 @@ export default {
|
|
|
|
|
<p>bar x: q</p>
|
|
|
|
|
<button class="baz">baz</button>
|
|
|
|
|
<p>baz x: q</p>
|
|
|
|
|
` );
|
|
|
|
|
`);
|
|
|
|
|
|
|
|
|
|
buttons[2].dispatchEvent( click );
|
|
|
|
|
await buttons[2].dispatchEvent(click);
|
|
|
|
|
|
|
|
|
|
assert.equal( component.x, 'r' );
|
|
|
|
|
assert.htmlEqual( target.innerHTML, `
|
|
|
|
|
assert.equal(component.x, 'r');
|
|
|
|
|
assert.htmlEqual(target.innerHTML, `
|
|
|
|
|
<p>x: r</p>
|
|
|
|
|
<button class="foo">foo</button>
|
|
|
|
|
<p>foo x: r</p>
|
|
|
|
@ -56,6 +56,6 @@ export default {
|
|
|
|
|
<p>bar x: r</p>
|
|
|
|
|
<button class="baz">baz</button>
|
|
|
|
|
<p>baz x: r</p>
|
|
|
|
|
` );
|
|
|
|
|
`);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|