diff options
author | 2021-08-27 14:45:59 +0000 | |
---|---|---|
committer | 2021-08-27 14:45:59 +0000 | |
commit | cd684eb95ef2fc6c312535c572aa3cf4b99c16fd (patch) | |
tree | 3035f9ef7f9abd9e0cedfb9d8d8e48ee826f0183 | |
parent | 24dce41c4cacba29ed311a9cb5b4faee2e5696be (diff) | |
download | astro-cd684eb95ef2fc6c312535c572aa3cf4b99c16fd.tar.gz astro-cd684eb95ef2fc6c312535c572aa3cf4b99c16fd.tar.zst astro-cd684eb95ef2fc6c312535c572aa3cf4b99c16fd.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/test/astro-attrs.test.js | 5 |
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(); |