diff --git a/packages/astro/test/test-utils.js b/packages/astro/test/test-utils.js index f9e1e40ee5..8c12799f15 100644 --- a/packages/astro/test/test-utils.js +++ b/packages/astro/test/test-utils.js @@ -243,7 +243,7 @@ const cliPath = fileURLToPath(new URL('../astro.js', import.meta.url)); /** Returns a process running the Astro CLI. */ export function cli(/** @type {string[]} */ ...args) { - const spawned = execa('node', [cliPath, ...args], { env: {'ASTRO_TELEMETRY_DISABLED': true}}); + const spawned = execa('node', [cliPath, ...args], { env: { ASTRO_TELEMETRY_DISABLED: true } }); spawned.stdout.setEncoding('utf8');