summaryrefslogtreecommitdiff
path: root/packages/integrations/netlify/test/test-utils.js
diff options
context:
space:
mode:
authorGravatar alexanderniebuhr <alexanderniebuhr@users.noreply.github.com> 2023-10-16 14:10:41 +0000
committerGravatar astrobot-houston <fred+astrobot@astro.build> 2023-10-16 14:10:41 +0000
commit3d1329414e507345b19e1dee81fe1bbff4eb3ae0 (patch)
tree69c822b1dc12f177b4919337109e6300a04df91d /packages/integrations/netlify/test/test-utils.js
parent63977f5e438062b7e9302b8feff41b662bfa6231 (diff)
downloadastro-3d1329414e507345b19e1dee81fe1bbff4eb3ae0.tar.gz
astro-3d1329414e507345b19e1dee81fe1bbff4eb3ae0.tar.zst
astro-3d1329414e507345b19e1dee81fe1bbff4eb3ae0.zip
[ci] format
Diffstat (limited to 'packages/integrations/netlify/test/test-utils.js')
-rw-r--r--packages/integrations/netlify/test/test-utils.js14
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;
+}