diff options
author | 2024-02-22 13:58:10 +0000 | |
---|---|---|
committer | 2024-02-22 13:58:10 +0000 | |
commit | 1e638c40192f0a292f4ee54e7db36e08af15d0fd (patch) | |
tree | 25bada54e3b3d394d66ec0808e83cc8639607561 /packages/create-astro/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/create-astro/test/utils.js')
-rw-r--r-- | packages/create-astro/test/utils.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/create-astro/test/utils.js b/packages/create-astro/test/utils.js index 6a62490e9..cd5c923ca 100644 --- a/packages/create-astro/test/utils.js +++ b/packages/create-astro/test/utils.js @@ -1,7 +1,7 @@ import fs from 'node:fs'; -import { setStdout } from '../dist/index.js'; -import stripAnsi from 'strip-ansi'; import { before, beforeEach } from 'node:test'; +import stripAnsi from 'strip-ansi'; +import { setStdout } from '../dist/index.js'; export function setup() { const ctx = { messages: [] }; |