From bb73617a8ee4d9fab1bec834abef73705bd2958f Mon Sep 17 00:00:00 2001 From: Aaryan Porwal Date: Tue, 3 Aug 2021 17:24:43 +0530 Subject: [PATCH] mgr/dashboard: Jenkins Applitools plugin: add batchId variable batchId variable is mandatory for the applitools test runner to show up in jenkins build reports, for more details, check out: https://plugins.jenkins.io/applitools-eyes/ Signed-off-by: Aaryan Porwal --- src/pybind/mgr/dashboard/frontend/applitools.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pybind/mgr/dashboard/frontend/applitools.config.js b/src/pybind/mgr/dashboard/frontend/applitools.config.js index 342a3560954b0..c20d3ef542f30 100644 --- a/src/pybind/mgr/dashboard/frontend/applitools.config.js +++ b/src/pybind/mgr/dashboard/frontend/applitools.config.js @@ -1,5 +1,6 @@ module.exports = { appName: 'Ceph Dashboard', + batchId: process.env.APPLITOOLS_BATCH_ID, apiKey: process.env.APPLITOOLS_API_KEY, browser: [ { width: 1920, height: 1080, name: 'chrome' }, -- 2.39.5