summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Matthew Phillips <matthewp@users.noreply.github.com> 2025-03-03 14:36:17 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2025-03-03 14:36:17 +0000
commit55ef4f574f08c9c8b9eaf073b45c59e10d4ee8e4 (patch)
treed27d831bce9b084639f075e37277676a3ad7c288
parent84e94cc85cc0f4ea9b5dba2009dc89e83a798f59 (diff)
downloadastro-55ef4f574f08c9c8b9eaf073b45c59e10d4ee8e4.tar.gz
astro-55ef4f574f08c9c8b9eaf073b45c59e10d4ee8e4.tar.zst
astro-55ef4f574f08c9c8b9eaf073b45c59e10d4ee8e4.zip
[ci] format
-rw-r--r--packages/astro/e2e/view-transitions.test.js2
-rw-r--r--packages/astro/src/transitions/router.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/astro/e2e/view-transitions.test.js b/packages/astro/e2e/view-transitions.test.js
index 675453e51..76287e878 100644
--- a/packages/astro/e2e/view-transitions.test.js
+++ b/packages/astro/e2e/view-transitions.test.js
@@ -1617,6 +1617,6 @@ test.describe('View Transitions', () => {
await expect(page).toHaveTitle('Page 3');
await page.click('#link');
await expect(page).toHaveTitle('Page 1');
- expect(lines.join("")).toBe('312233');
+ expect(lines.join('')).toBe('312233');
});
});
diff --git a/packages/astro/src/transitions/router.ts b/packages/astro/src/transitions/router.ts
index 49e696b84..380f13bf8 100644
--- a/packages/astro/src/transitions/router.ts
+++ b/packages/astro/src/transitions/router.ts
@@ -1,7 +1,7 @@
import type { TransitionBeforePreparationEvent } from './events.js';
import { TRANSITION_AFTER_SWAP, doPreparation, doSwap } from './events.js';
-import type { Direction, Fallback, Options } from './types.js';
import { detectScriptExecuted } from './swap-functions.js';
+import type { Direction, Fallback, Options } from './types.js';
type State = {
index: number;