summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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');