diff options
author | 2023-08-23 12:31:38 +0000 | |
---|---|---|
committer | 2023-08-23 12:31:38 +0000 | |
commit | 17d9aab39a26e8d8cd0e3ccb16b10b86b84659a1 (patch) | |
tree | d7d35bd04823766913eb83f391204c19a61edbee | |
parent | 273335cb01615c3c06d46c02464f4496a81f8d0b (diff) | |
download | astro-17d9aab39a26e8d8cd0e3ccb16b10b86b84659a1.tar.gz astro-17d9aab39a26e8d8cd0e3ccb16b10b86b84659a1.tar.zst astro-17d9aab39a26e8d8cd0e3ccb16b10b86b84659a1.zip |
[ci] format
-rw-r--r-- | packages/astro/test/astro-basic.test.js | 4 |
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 () => { |