]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/applitools.config.js
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / applitools.config.js
CommitLineData
20effc67
TL
1const fs = require('fs');
2
3// Read the contents of the ceph_release file to retrieve
4// the branch
5const cephRelease = fs.readFileSync('../../../../ceph_release', 'utf8').split('\n');
1e59de90 6const branch = cephRelease[2] === 'dev' ? 'main' : cephRelease[1];
a4b75251
TL
7module.exports = {
8 appName: 'Ceph Dashboard',
20effc67 9 batchId: process.env.APPLITOOLS_BATCH_ID,
a4b75251
TL
10 apiKey: process.env.APPLITOOLS_API_KEY,
11 browser: [
12 { width: 1920, height: 1080, name: 'chrome' },
1e59de90 13 { width: 1920, height: 1080, name: 'firefox' }
a4b75251 14 ],
20effc67 15 showLogs: false,
a4b75251
TL
16 saveDebugData: true,
17 failCypressOnDiff: true,
20effc67
TL
18 concurrency: 4,
19 baselineBranchName: branch
a4b75251 20};