summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/applitools.config.js
blob: 2bf52651ec2c9fc7ff6a4baaa8f796744d864c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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',
  apiKey: process.env.APPLITOOLS_API_KEY,
  browser: [
    { width: 1920, height: 1080, name: 'chrome' },
    { width: 1920, height: 1080, name: 'firefox' },
    { width: 800, height: 600, name: 'chrome' },
    { width: 800, height: 600, name: 'firefox' }
  ],
  showLogs: false,
  saveDebugData: true,
  failCypressOnDiff: true,
  concurrency: 4,
  baselineBranchName: branch
};