From fed4c69f13ee36e39cfde562e8965353af81bf23 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Fri, 26 Jan 2018 13:30:59 -0500 Subject: [PATCH] change test outcome for uninitialised component bindings inside conditionals --- .../samples/component-binding-conditional/_config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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

` ); } };