From 8fe8b4bbba851c5fb25d47ec7438daf3265a97d0 Mon Sep 17 00:00:00 2001 From: Ely Lucas Date: Wed, 30 Oct 2019 09:50:11 -0600 Subject: [PATCH] chore(build): awaiting on test task --- .scripts/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/common.js b/.scripts/common.js index d9b067d623..c31a283ce0 100644 --- a/.scripts/common.js +++ b/.scripts/common.js @@ -129,7 +129,7 @@ function preparePackage(tasks, package, version, install) { }); projectTasks.push({ title: `${pkg.name}: test`, - task: () => execa('npm', ['test'], { cwd: projectRoot }) + task: async () => await execa('npm', ['test'], { cwd: projectRoot }) }); }