summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/test/astro-attrs.test.js5
1 files changed, 4 insertions, 1 deletions
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();