From b26ee1c3bb385f0d0c23a3a3c3c27e3b413ba285 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sun, 5 Aug 2018 14:00:47 -0400 Subject: [PATCH] tweak test --- test/custom-elements/samples/props/my-widget.html | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/test/custom-elements/samples/props/my-widget.html b/test/custom-elements/samples/props/my-widget.html index e5b0e723e8..b4ed9b38a6 100644 --- a/test/custom-elements/samples/props/my-widget.html +++ b/test/custom-elements/samples/props/my-widget.html @@ -1,9 +1,14 @@ -

{(items || []).length} items

-

{(items || []).join(', ')}

-

{JSON.stringify(items)}

+

{items.length} items

+

{items.join(', ')}

\ No newline at end of file