From db5646821d6eb4f684520497bbc108ef346165a1 Mon Sep 17 00:00:00 2001 From: Conduitry Date: Wed, 18 Oct 2017 08:51:46 -0400 Subject: [PATCH] add failing test for each block updates --- .../samples/each-block-destructured-array/_config.js | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/test/runtime/samples/each-block-destructured-array/_config.js b/test/runtime/samples/each-block-destructured-array/_config.js index cd29960426..99933effcf 100644 --- a/test/runtime/samples/each-block-destructured-array/_config.js +++ b/test/runtime/samples/each-block-destructured-array/_config.js @@ -9,5 +9,12 @@ export default { html: `

raccoon: hands

eagle: wings

- ` + `, + + test ( assert, component, target ) { + component.set({ animalPawsEntries: [['foo', 'bar']] }); + assert.htmlEqual( target.innerHTML, ` +

foo: bar

+ `); + }, };