summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2021-08-27 14:45:59 +0000
committerGravatar GitHub Actions <actions@github.com> 2021-08-27 14:45:59 +0000
commitcd684eb95ef2fc6c312535c572aa3cf4b99c16fd (patch)
tree3035f9ef7f9abd9e0cedfb9d8d8e48ee826f0183
parent24dce41c4cacba29ed311a9cb5b4faee2e5696be (diff)
downloadastro-cd684eb95ef2fc6c312535c572aa3cf4b99c16fd.tar.gz
astro-cd684eb95ef2fc6c312535c572aa3cf4b99c16fd.tar.zst
astro-cd684eb95ef2fc6c312535c572aa3cf4b99c16fd.zip
[ci] yarn format
-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();