diff --git a/test/runtime/samples/component-binding-conditional/_config.js b/test/runtime/samples/component-binding-conditional/_config.js index 89512afa7a..a4295d8c16 100644 --- a/test/runtime/samples/component-binding-conditional/_config.js +++ b/test/runtime/samples/component-binding-conditional/_config.js @@ -2,16 +2,16 @@ export default { 'skip-ssr': true, // TODO delete this line, once binding works html: ` -

y: foo

-

y: foo

+

y: bar

+

y: bar

`, test ( assert, component, target ) { component.set({ x: false }); assert.htmlEqual( target.innerHTML, ` -

y: foo

-

y: foo

+

y: bar

+

y: bar

` ); } };