// $$props reactivity in slot fallback
export default {
	html: `
		
		{"value":""}
	`,
	ssrHtml: `
		
		{"value":""}
	`,
	async test({ assert, target, window }) {
		const input = target.querySelector('input');
		input.value = 'abc';
		await input.dispatchEvent(new window.Event('input'));
		assert.htmlEqual(target.innerHTML, `
			
			{"value":"abc"}
		`);
	}
};