summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bluwy <bluwy@users.noreply.github.com> 2023-08-23 12:31:38 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-08-23 12:31:38 +0000
commit17d9aab39a26e8d8cd0e3ccb16b10b86b84659a1 (patch)
treed7d35bd04823766913eb83f391204c19a61edbee
parent273335cb01615c3c06d46c02464f4496a81f8d0b (diff)
downloadastro-17d9aab39a26e8d8cd0e3ccb16b10b86b84659a1.tar.gz
astro-17d9aab39a26e8d8cd0e3ccb16b10b86b84659a1.tar.zst
astro-17d9aab39a26e8d8cd0e3ccb16b10b86b84659a1.zip
[ci] format
-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 () => {