diff options
author | 2021-07-30 12:34:43 +0000 | |
---|---|---|
committer | 2021-07-30 12:34:43 +0000 | |
commit | fadb652b95280822c002b3d1b9a09ef7f4377127 (patch) | |
tree | 010c03ad47cd4051304806c0d9510a1074d3af1e | |
parent | a1491cc65969010a3269fd822b8948882bd1a8c1 (diff) | |
download | astro-fadb652b95280822c002b3d1b9a09ef7f4377127.tar.gz astro-fadb652b95280822c002b3d1b9a09ef7f4377127.tar.zst astro-fadb652b95280822c002b3d1b9a09ef7f4377127.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/test/vue-component.test.js | 2 |
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(); |