]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/applitools.config.js
import quincy beta 17.1.0
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / applitools.config.js
index 342a3560954b02b0810fc8ea2f1bdc9430620e69..4aaedf23e5aecdf057eb7a3c875d696cd67420d8 100644 (file)
@@ -1,5 +1,12 @@
+const fs = require('fs');
+
+// Read the contents of the ceph_release file to retrieve
+// the branch
+const cephRelease = fs.readFileSync('../../../../ceph_release', 'utf8').split('\n');
+const branch = cephRelease[2] === 'dev' ? 'master' : cephRelease[1];
 module.exports = {
   appName: 'Ceph Dashboard',
+  batchId: process.env.APPLITOOLS_BATCH_ID, 
   apiKey: process.env.APPLITOOLS_API_KEY,
   browser: [
     { width: 1920, height: 1080, name: 'chrome' },
@@ -7,8 +14,9 @@ module.exports = {
     { width: 800, height: 600, name: 'chrome' },
     { width: 800, height: 600, name: 'firefox' }
   ],
-  showLogs: true,
+  showLogs: false,
   saveDebugData: true,
   failCypressOnDiff: true,
-  concurrency: 4
+  concurrency: 4,
+  baselineBranchName: branch
 };