summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2021-07-30 12:34:43 +0000
committerGravatar GitHub Actions <actions@github.com> 2021-07-30 12:34:43 +0000
commitfadb652b95280822c002b3d1b9a09ef7f4377127 (patch)
tree010c03ad47cd4051304806c0d9510a1074d3af1e
parenta1491cc65969010a3269fd822b8948882bd1a8c1 (diff)
downloadastro-fadb652b95280822c002b3d1b9a09ef7f4377127.tar.gz
astro-fadb652b95280822c002b3d1b9a09ef7f4377127.tar.zst
astro-fadb652b95280822c002b3d1b9a09ef7f4377127.zip
[ci] yarn format
-rw-r--r--packages/astro/test/vue-component.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/test/vue-component.test.js b/packages/astro/test/vue-component.test.js
index c9ebfee9d..9600b5e6f 100644
--- a/packages/astro/test/vue-component.test.js
+++ b/packages/astro/test/vue-component.test.js
@@ -15,7 +15,7 @@ Vue('Can load Vue', async ({ runtime }) => {
const $ = doc(result.contents);
assert.equal($('h1').text(), 'Hello world!', 'Can use slots');
assert.equal($('button').length, 2, 'Can render components');
- assert.equal($('pre').text(), "5", 'Can render nested components');
+ assert.equal($('pre').text(), '5', 'Can render nested components');
});
Vue.run();