summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar FredKSchott <FredKSchott@users.noreply.github.com> 2021-08-10 16:52:31 +0000
committerGravatar GitHub Actions <actions@github.com> 2021-08-10 16:52:31 +0000
commitde3af1f4b7edd9e8a747a9fa9d21b6e3b94a30cc (patch)
tree34f3bb1d49d81dcc22e6dfcb4662c92a0a899814
parent1350d57997c3f50ca1f20247a734962f6825b591 (diff)
downloadastro-de3af1f4b7edd9e8a747a9fa9d21b6e3b94a30cc.tar.gz
astro-de3af1f4b7edd9e8a747a9fa9d21b6e3b94a30cc.tar.zst
astro-de3af1f4b7edd9e8a747a9fa9d21b6e3b94a30cc.zip
[ci] yarn format
-rw-r--r--packages/astro/test/vue-component.test.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/astro/test/vue-component.test.js b/packages/astro/test/vue-component.test.js
index 1911df7eb..1529d1f15 100644
--- a/packages/astro/test/vue-component.test.js
+++ b/packages/astro/test/vue-component.test.js
@@ -13,7 +13,9 @@ Vue('Can load Vue', async ({ runtime }) => {
assert.ok(!result.error, `build error: ${result.error}`);
const $ = doc(result.contents);
- const allPreValues = $('pre').toArray().map((el) => $(el).text());
+ const allPreValues = $('pre')
+ .toArray()
+ .map((el) => $(el).text());
assert.equal(allPreValues, ['0', '1', '10', '100', '1000'], 'renders all components correctly');
assert.equal($('astro-root').length, 4, 'renders 3 astro-roots');
assert.equal($('astro-root[uid]').length, 4, 'all astro-roots have uid attributes');