export default {
	html: ``,
	test({ assert, component, target, window }) {
		const input = target.querySelector('input');
		const event = new window.KeyboardEvent('keydown', {
			which: 13
		});
		let blurred = false;
		input.focus();
		input.addEventListener('blur', () => {
			blurred = true;
		});
		input.dispatchEvent(event);
		assert.ok(blurred);
	},
};