Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shwetaneelsharma/19c624f4a0ed1326b7d9041f974389c5 to your computer and use it in GitHub Desktop.
Save shwetaneelsharma/19c624f4a0ed1326b7d9041f974389c5 to your computer and use it in GitHub Desktop.
Applitools Cypress Ultrafast Grid configuration
if (Cypress.env('APPLITOOLS_SETUP')) {
beforeEach(() => {
cy.eyesOpen({
appName: 'Umami Drupal Site!',
batchName: 'Umami Drupal Site!',
browser: [
{ width: 1920, height: 1080, name: 'chrome' },
{ width: 1024, height: 768, name: 'firefox' },
{ width: 1440, height: 900, name: 'safari' },
{ width: 1200, height: 800, name: 'edgechromium' },
{ deviceName: 'iPhone X' },
{ deviceName: 'iPad' },
{ deviceName: 'Pixel 2' },
],
concurrency: 1,
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment