diff options
author | 2024-08-15 12:04:50 +0000 | |
---|---|---|
committer | 2024-08-15 12:04:50 +0000 | |
commit | 934165e21b8b51868db70bbdbc7ffda63b77aefd (patch) | |
tree | f1e738c8dd38dfaab7e35ce2541e36b53feaaed3 | |
parent | 35af73aace97a7cc898b9aa5040db8bc2ac62687 (diff) | |
download | astro-934165e21b8b51868db70bbdbc7ffda63b77aefd.tar.gz astro-934165e21b8b51868db70bbdbc7ffda63b77aefd.tar.zst astro-934165e21b8b51868db70bbdbc7ffda63b77aefd.zip |
[ci] format
-rw-r--r-- | packages/astro/e2e/server-islands.test.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packages/astro/e2e/server-islands.test.js b/packages/astro/e2e/server-islands.test.js index 1c4e2a7e8..496cf229c 100644 --- a/packages/astro/e2e/server-islands.test.js +++ b/packages/astro/e2e/server-islands.test.js @@ -51,7 +51,10 @@ test.describe('Server islands', () => { await expect(el).toHaveCount(2); }); - test('Missing server island start comment doesn\'t cause browser to lock up', async ({ page, astro }) => { + test("Missing server island start comment doesn't cause browser to lock up", async ({ + page, + astro, + }) => { await page.goto(astro.resolveUrl('/base/')); let el = page.locator('#first'); await expect(el).toHaveCount(1); |