export default {
	data: {
		x: true
	},
	html: `
		
Foo
		what goes up must come down
		element
		you're it
		neither foo nor bar
		text
		a
		b
		c
		baz
	`,
	test(assert, component, target) {
		component.set({
			x: false
		});
		assert.htmlEqual(target.innerHTML, `
			Bar
			element
			you're it
			neither foo nor bar
			text
			a
			b
			c
			baz
			what goes up must come down
		`);
	}
};