summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/test/astro-basic.test.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/test/astro-basic.test.js b/packages/astro/test/astro-basic.test.js
index 1a92b3f18..3a75c1acc 100644
--- a/packages/astro/test/astro-basic.test.js
+++ b/packages/astro/test/astro-basic.test.js
@@ -106,8 +106,8 @@ describe('Astro basics', () => {
it('renders the components top-down', async () => {
const html = await fixture.readFile('/order/index.html');
const $ = cheerio.load(html);
- expect($('#rendered-order').text()).to.eq('Rendered order: A, B')
- })
+ expect($('#rendered-order').text()).to.eq('Rendered order: A, B');
+ });
});
it('Supports void elements whose name is a string (#2062)', async () => {