diff options
Diffstat (limited to 'packages/integrations/netlify/test/test-utils.js')
-rw-r--r-- | packages/integrations/netlify/test/test-utils.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/integrations/netlify/test/test-utils.js b/packages/integrations/netlify/test/test-utils.js index 5ec8b49ba..6da676180 100644 --- a/packages/integrations/netlify/test/test-utils.js +++ b/packages/integrations/netlify/test/test-utils.js @@ -1,12 +1,12 @@ -import { execa } from 'execa'; +import { execa } from "execa"; /** Returns a process running the Astro CLI. */ export function cli(/** @type {string[]} */ ...args) { - const spawned = execa('npx', ['astro', ...args], { - env: { ASTRO_TELEMETRY_DISABLED: true }, - }); + const spawned = execa("npx", ["astro", ...args], { + env: { ASTRO_TELEMETRY_DISABLED: true }, + }); - spawned.stdout.setEncoding('utf8'); + spawned.stdout.setEncoding("utf8"); - return spawned; -}
\ No newline at end of file + return spawned; +} |