-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathapplitools.config.js
More file actions
24 lines (18 loc) · 929 Bytes
/
applitools.config.js
File metadata and controls
24 lines (18 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module.exports = {
apiKey: process.env.APPLITOOLS_API_KEY,
serverUrl: "https://eyes.applitools.com", // Update this URL if you are not using the Eyes public cloud.
// Specify the number of visual checkpoints Applitools will perform in parallel.
// Warning: If you have a free account, then concurrency will be limited to 1.
testConcurrency: 10,
// Uncomment the below line and paste in your API key as an alternative to using an environment variable
// apiKey: '',
batchName: 'Cypress Quickstart',
// Select the browsers and devices to run your tests on via the Ultrafast Grid
browser: [
{width: 800, height: 600, name: 'chrome'},
{width: 1600, height: 1200, name: 'firefox'},
{width: 1024, height: 768, name: 'safari'},
{deviceName: 'Pixel 2', screenOrientation: 'portrait'},
{deviceName: 'Nexus 10', screenOrientation: 'landscape'},
]
}