chore(build): awaiting on test task

This commit is contained in:
Ely Lucas 2019-10-30 09:50:11 -06:00
parent e23d91c6e7
commit 16815b3cc8
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,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 })
});
}