summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2023-07-27 19:11:02 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-07-27 19:11:02 +0000
commitfa6fc8ba4c674a1ebfa79d7bd8b9b5c201f7186b (patch)
treee35b6fc836690ce8046ec97b011546dec045600e
parent59b556232696d3aba3c2263ea104cd9922085fd2 (diff)
downloadastro-fa6fc8ba4c674a1ebfa79d7bd8b9b5c201f7186b.tar.gz
astro-fa6fc8ba4c674a1ebfa79d7bd8b9b5c201f7186b.tar.zst
astro-fa6fc8ba4c674a1ebfa79d7bd8b9b5c201f7186b.zip
[ci] format
-rw-r--r--packages/astro/e2e/view-transitions.test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/astro/e2e/view-transitions.test.js b/packages/astro/e2e/view-transitions.test.js
index 82007122a..11fbfa4aa 100644
--- a/packages/astro/e2e/view-transitions.test.js
+++ b/packages/astro/e2e/view-transitions.test.js
@@ -182,11 +182,11 @@ test.describe('View Transitions', () => {
await page.click('#click-one');
await expect(p, 'should have content').toHaveText('Page 1');
});
-
- test('<Image /> component forwards transitions to the <img>', async ({ page, astro }) => {
+
+ test('<Image /> component forwards transitions to the <img>', async ({ page, astro }) => {
// Go to page 1
await page.goto(astro.resolveUrl('/image-one'));
const img = page.locator('img[data-astro-transition-scope]');
await expect(img).toBeVisible('The image tag should have the transition scope attribute.');
- });
+ });
});