diff options
author | 2021-07-07 20:10:09 +0000 | |
---|---|---|
committer | 2021-07-07 20:10:09 +0000 | |
commit | 1bbe98ae54eb6018184fdc3875fe689775510ad6 (patch) | |
tree | eb8500d84704793c0d5b711f2e8f1b3822a83532 /packages/create-astro/test/external.test.js | |
parent | 53fcae1a9a26e3e2e9d6aca7ec71acc13a3556ea (diff) | |
download | astro-1bbe98ae54eb6018184fdc3875fe689775510ad6.tar.gz astro-1bbe98ae54eb6018184fdc3875fe689775510ad6.tar.zst astro-1bbe98ae54eb6018184fdc3875fe689775510ad6.zip |
[ci] yarn format
Diffstat (limited to 'packages/create-astro/test/external.test.js')
-rw-r--r-- | packages/create-astro/test/external.test.js | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/packages/create-astro/test/external.test.js b/packages/create-astro/test/external.test.js index 9fac8c202..be4404e53 100644 --- a/packages/create-astro/test/external.test.js +++ b/packages/create-astro/test/external.test.js @@ -10,12 +10,10 @@ async function run(outdir, template) { }); } -const testCases = [ - ['shopify', 'cassidoo/shopify-react-astro'] -]; +const testCases = [['shopify', 'cassidoo/shopify-react-astro']]; async function tests() { - for(let [dir, tmpl] of testCases) { + for (let [dir, tmpl] of testCases) { await run(dir, tmpl); const outPath = new URL('' + dir, FIXTURES_URL); @@ -23,7 +21,7 @@ async function tests() { } } -tests().catch(err => { +tests().catch((err) => { console.error(err); process.exit(1); -});
\ No newline at end of file +}); |