diff options
author | 2024-02-22 13:58:10 +0000 | |
---|---|---|
committer | 2024-02-22 13:58:10 +0000 | |
commit | 1e638c40192f0a292f4ee54e7db36e08af15d0fd (patch) | |
tree | 25bada54e3b3d394d66ec0808e83cc8639607561 /packages/integrations/alpinejs/test/test-utils.js | |
parent | 7c5fcd2fa817472f480bbfbbc11b9ed71a7210ab (diff) | |
download | astro-1e638c40192f0a292f4ee54e7db36e08af15d0fd.tar.gz astro-1e638c40192f0a292f4ee54e7db36e08af15d0fd.tar.zst astro-1e638c40192f0a292f4ee54e7db36e08af15d0fd.zip |
chore: import sorting for test folder and e2e folder (#10190)
Diffstat (limited to 'packages/integrations/alpinejs/test/test-utils.js')
-rw-r--r-- | packages/integrations/alpinejs/test/test-utils.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/alpinejs/test/test-utils.js b/packages/integrations/alpinejs/test/test-utils.js index ac6b36ea0..d7bf97cc6 100644 --- a/packages/integrations/alpinejs/test/test-utils.js +++ b/packages/integrations/alpinejs/test/test-utils.js @@ -1,7 +1,7 @@ -import { expect, test as testBase } from '@playwright/test'; import fs from 'node:fs/promises'; import path from 'node:path'; import { fileURLToPath } from 'node:url'; +import { expect, test as testBase } from '@playwright/test'; import { loadFixture as baseLoadFixture } from '../../../astro/test/test-utils.js'; export const isWindows = process.platform === 'win32'; |