From cd684eb95ef2fc6c312535c572aa3cf4b99c16fd Mon Sep 17 00:00:00 2001 From: matthewp Date: Fri, 27 Aug 2021 14:45:59 +0000 Subject: [PATCH] [ci] yarn format --- packages/astro/test/astro-attrs.test.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/astro/test/astro-attrs.test.js b/packages/astro/test/astro-attrs.test.js index 94f85b1d6..7db6e7239 100644 --- a/packages/astro/test/astro-attrs.test.js +++ b/packages/astro/test/astro-attrs.test.js @@ -50,7 +50,10 @@ Attributes('Passes namespaced attributes to components as expected', async ({ ru assert.ok(!result.error, `build error: ${result.error}`); const $ = doc(result.contents); - assert.equal($('span').attr('on:click'), Function.prototype.toString.call((event) => console.log(event))); + assert.equal( + $('span').attr('on:click'), + Function.prototype.toString.call((event) => console.log(event)) + ); }); Attributes.run();