Resolve missing Promise resolve type (#1907)

This commit is contained in:
Eddy Ashton 2020-11-20 13:34:52 +00:00 коммит произвёл GitHub
Родитель 595787a94d
Коммит 86c270dfd5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -69,7 +69,7 @@ export function setupMochaCCFSandbox(opts: CCFSandboxOpts) {
let sandboxProcess: ChildProcess;
before(function () {
this.timeout(60000); // first time takes longer due to venv install
return new Promise((resolve, reject) => {
return new Promise<void>((resolve, reject) => {
sandboxProcess = spawn(command, args, {
stdio: ["pipe", "pipe", "inherit"],
timeout: 40000, // sandbox startup + max test duration
@ -88,7 +88,7 @@ export function setupMochaCCFSandbox(opts: CCFSandboxOpts) {
after(function () {
this.timeout(5000);
return new Promise((resolve, reject) => {
return new Promise<void>((resolve, reject) => {
sandboxProcess.on("exit", () => {
resolve();
});