summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/applitools.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/pybind/mgr/dashboard/frontend/applitools.config.js')
-rw-r--r--src/pybind/mgr/dashboard/frontend/applitools.config.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/pybind/mgr/dashboard/frontend/applitools.config.js b/src/pybind/mgr/dashboard/frontend/applitools.config.js
new file mode 100644
index 000000000..2bf52651e
--- /dev/null
+++ b/src/pybind/mgr/dashboard/frontend/applitools.config.js
@@ -0,0 +1,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
+};