diff --git a/test/js/samples/debug-foo-bar-baz-things/expected-bundle.js b/test/js/samples/debug-foo-bar-baz-things/expected-bundle.js index f7365d1ef7..92431339d1 100644 --- a/test/js/samples/debug-foo-bar-baz-things/expected-bundle.js +++ b/test/js/samples/debug-foo-bar-baz-things/expected-bundle.js @@ -232,8 +232,8 @@ function create_each_block(component, ctx) { text = createText(text_value); text_1 = createText("\n\t"); - const { foo, bar, baz } = ctx; - console.log({ foo, bar, baz }); + const { foo, bar, baz, thing } = ctx; + console.log({ foo, bar, baz, thing }); debugger; }, @@ -248,9 +248,9 @@ function create_each_block(component, ctx) { setData(text, text_value); } - if (changed.foo || changed.bar || changed.baz) { - const { foo, bar, baz } = ctx; - console.log({ foo, bar, baz }); + if (changed.foo || changed.bar || changed.baz || changed.things) { + const { foo, bar, baz, thing } = ctx; + console.log({ foo, bar, baz, thing }); debugger; } },