From d3c38fbe78731534e3c750694bc80800ddd06d29 Mon Sep 17 00:00:00 2001 From: aaron <462826@qq.com> Date: Thu, 14 Jul 2022 16:32:15 +0800 Subject: [PATCH] support Playwright and Puppeteer --- ui/src/views/exec/LogList.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/src/views/exec/LogList.vue b/ui/src/views/exec/LogList.vue index fa72ce50..5176286a 100644 --- a/ui/src/views/exec/LogList.vue +++ b/ui/src/views/exec/LogList.vue @@ -168,15 +168,15 @@ const exec = (data: any) => { msg = {act: 'execCase', testSets: sets} } else if (execType === 'unit') { - const set = {workspaceId: data.id, + const set = { + workspaceId: data.id, workspaceType: data.type, cmd: data.cmd, submitResult: data.submitResult, name: data.name, - productId: currProduct.value.id, } - msg = {act: 'execUnit', testSets: [set]} + msg = {act: 'execUnit', testSets: [set], productId: currProduct.value.id} } else if (execType === 'stop') { msg = {act: 'execStop'} -- GitLab