diff options
Diffstat (limited to 'scripts/smoke/index.js')
-rw-r--r-- | scripts/smoke/index.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/smoke/index.js b/scripts/smoke/index.js index c0600e2b7..140f006c1 100644 --- a/scripts/smoke/index.js +++ b/scripts/smoke/index.js @@ -33,7 +33,7 @@ const getChildDirectories = async (/** @type {URL} */ dir) => { async function run() { console.log(''); - const directories = [...await getChildDirectories(exampleDir), ...await getChildDirectories(smokeDir)]; + const directories = [...(await getChildDirectories(exampleDir)), ...(await getChildDirectories(smokeDir))]; console.log('🤖', 'Preparing', 'yarn'); @@ -65,4 +65,4 @@ async function run() { } } -run();
\ No newline at end of file +run(); |