diff options
author | 2022-03-30 12:43:13 +0000 | |
---|---|---|
committer | 2022-03-30 12:43:13 +0000 | |
commit | 6a1a40eef8dc034c9e368fa4471620306d4286fd (patch) | |
tree | a390a3cfce19e0191a1316e833ff92e8a642fc34 /packages/integrations/deno/test/helpers.js | |
parent | 13b271bc7d032f5f3749a9868532d12d442a09ef (diff) | |
download | astro-6a1a40eef8dc034c9e368fa4471620306d4286fd.tar.gz astro-6a1a40eef8dc034c9e368fa4471620306d4286fd.tar.zst astro-6a1a40eef8dc034c9e368fa4471620306d4286fd.zip |
[ci] format
Diffstat (limited to 'packages/integrations/deno/test/helpers.js')
-rw-r--r-- | packages/integrations/deno/test/helpers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/integrations/deno/test/helpers.js b/packages/integrations/deno/test/helpers.js index df4f7c934..659d24d5e 100644 --- a/packages/integrations/deno/test/helpers.js +++ b/packages/integrations/deno/test/helpers.js @@ -4,7 +4,7 @@ const dir = new URL('./', import.meta.url); export async function runBuild(fixturePath) { let proc = Deno.run({ cmd: ['node', '../../../../../astro/astro.js', 'build', '--silent'], - cwd: fromFileUrl(new URL(fixturePath, dir)) + cwd: fromFileUrl(new URL(fixturePath, dir)), }); await proc.status(); return async () => await proc.close(); |