Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CLI filtering --spec with glob pattern does not find spec files #16102

Closed
hang-up opened this issue Apr 20, 2021 · 6 comments · Fixed by #19557
Closed

CLI filtering --spec with glob pattern does not find spec files #16102

hang-up opened this issue Apr 20, 2021 · 6 comments · Fixed by #19557

Comments

@hang-up
Copy link
Contributor

hang-up commented Apr 20, 2021

Current behavior

Given the following folder structure:

.
├── cypress
│   ├── integration
│       └── _fixtures
│           └── fixture-should-not-match.spec.js
│       └── _unit
│           └── unit-should-not-match.spec.js                  
│       └── sub-level-1
│           └── should-match-level-1.spec.js                   --> this one should match!
│         └── sub-level-2
│             └── should-match-level-2.spec.js                 --> this one should match!
│       └── fixture-should-not-match.spec.js

I'd like to trigger cypress with cypress run targeting only the two spec files highlighted. One glob pattern tested from here gives the right result.

However, when triggering from the command line with npx cypress run --spec 'cypress/integration/{[!fix]*.spec.js,!(_unit)/**/[!fix]*.spec.js}', I get the message

Can't run because no spec files were found.

We searched for any files matching this glob pattern:

cypress/integration/{[!fix]*.spec.js,!(_unit)/**/[!fix]*.spec.js}

Relative to the project root folder:

/Users/username/path/to/project

Desired behavior

Cypress should find & run the two specs highlighted in the snippet above.

Test code to reproduce

npx cypress run --spec 'cypress/integration/{[!fix]*.spec.js,!(_unit)/**/[!fix]*.spec.js}'

Versions

Cypress 6.5.0 (Upgrade to Cypress 7 impossible atm, as the project has tied dependencies)
Mac OS 10.15.7

@jennifer-shehane
Copy link
Member

I can recreate this issue as described.

This error is thrown here if someone wants to walk back to find why this doesn't work. https://github.com/cypress-io/cypress/blob/develop/packages/server/lib/modes/run.js#L1569:L1569 CLI is historically not great with handling odd characters.

@jennifer-shehane jennifer-shehane changed the title CLI filtering with glob pattern CLI filtering --spec with glob pattern does not find spec files Apr 21, 2021
@jennifer-shehane jennifer-shehane added type: bug cli stage: ready for work The issue is reproducible and in scope labels Apr 21, 2021
@melibe23
Copy link

I am experiencing the same issue. Although, my glob pattern looks like this:

DEBUG=cypress:cli,cypress:server:specs npx cypress run --spec "cypress/integration/{components,pages}/**/visual/desktop.js"

This is the log:


cypress/integration/pages/reviews-page/review-summary/ga/desktop.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/review-summary/ga/mobile.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/review-summary/ga/tablet.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/review-video-card/ga/desktop.js                 │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/review-video-card/ga/mobile.js                  │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/review-video-card/ga/tablet.js                  │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/search/ga/_specs.js                             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/search/ga/desktop.js                            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/search/ga/mobile.js                             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/search/ga/tablet.js                             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/sort/ga/_specs.js                               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/sort/ga/desktop.js                              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/sort/ga/mobile.js                               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/reviews-page/sort/ga/tablet.js                               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/_seo/_specs.js                                 │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/_seo/head-desktop.js                           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/_seo/head-mobile.js                            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/_seo/head-tablet.js                            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/_seo/header.js                                 │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/buyers-guide/functional/_specs.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/buyers-guide/functional/desktop.js             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/buyers-guide/functional/mobile.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/buyers-guide/functional/tablet.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/buyers-guide/ga/_specs.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/buyers-guide/ga/desktop.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/buyers-guide/ga/mobile.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/buyers-guide/ga/tablet.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/product-card/functional/_specs.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/product-card/functional/desktop.js             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/product-card/functional/mobile.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/product-card/functional/tablet.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/product-card/ga/_specs.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/product-card/ga/desktop.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/product-card/ga/mobile.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-bing-page/product-card/ga/tablet.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/_seo/_specs.js                               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/_seo/head-desktop.js                         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/_seo/head-mobile.js                          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/_seo/head-tablet.js                          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/_seo/header.js                               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/product-card/functional/_specs.js            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/product-card/functional/desktop.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/product-card/functional/mobile.js            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/product-card/functional/tablet.js            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/product-card/ga/_specs.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/product-card/ga/desktop.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/product-card/ga/mobile.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-google-page/product-card/ga/tablet.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/alternatives/functional/_specs.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/alternatives/functional/desktop.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/alternatives/functional/mobile.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/alternatives/functional/tablet.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/alternatives/ga/_specs.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/alternatives/ga/desktop.js                  │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/alternatives/ga/mobile.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/alternatives/ga/tablet.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/overview/functional/_specs.js               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/overview/functional/desktop.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/overview/functional/mobile.js               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/overview/functional/tablet.js               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/overview/ga/_specs.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/overview/ga/desktop.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/overview/ga/mobile.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/overview/ga/tablet.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/product-info-card/functional/_specs.js      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/product-info-card/functional/desktop.js     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/product-info-card/functional/mobile.js      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/product-info-card/functional/tablet.js      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/product-info-card/ga/_specs.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/product-info-card/ga/desktop.js             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/product-info-card/ga/mobile.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/sem-listing-page/product-info-card/ga/tablet.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/_seo/_specs.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/_seo/header.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/buyers-guide/ga/desktop.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/buyers-guide/ga/mobile.js            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/buyers-guide/ga/tablet.js            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/filter-facets/ga/desktop.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/filter-facets/ga/mobile.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/filter-facets/ga/tablet.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/listing-card/ga/desktop.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/listing-card/ga/mobile.js            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/listing-card/ga/tablet.js            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/personalization-banner/ga/desktop.js │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/personalization-banner/ga/mobile.js  │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/personalization-banner/ga/tablet.js  │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/related-categories/ga/desktop.js     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/related-categories/ga/mobile.js      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/related-categories/ga/tablet.js      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/sorting-overlay/ga/desktop.js        │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/sorting-overlay/ga/mobile.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/sorting-overlay/ga/tablet.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/sorting-overlay/visual/desktop.js    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/sorting-overlay/visual/mobile.js     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/sorting-overlay/visual/tablet.js     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/suggested-articles/ga/_specs.js      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/suggested-articles/ga/desktop.js     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/suggested-articles/ga/mobile.js      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/suggested-articles/ga/tablet.js      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/video/_specs.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/video/desktop.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/video/mobile.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-content-first-page/video/tablet.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/_seo/_specs.js                                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/_seo/head_Canonical_and_Robots-desktop.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/_seo/head_Canonical_and_Robots-mobile.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/_seo/head_Canonical_and_Robots-tablet.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/_seo/head-desktop.js                               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/_seo/head-mobile.js                                │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/_seo/head-tablet.js                                │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/_seo/header.js                                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/buyers-guide/ga/_specs.js                          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/buyers-guide/ga/desktop.js                         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/buyers-guide/ga/mobile.js                          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/buyers-guide/ga/tablet.js                          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/filter-facets/ga/_specs.js                         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/filter-facets/ga/desktop.js                        │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/filter-facets/ga/mobile.js                         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/filter-facets/ga/tablet.js                         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/filter-facets/visual/_specs.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/filter-facets/visual/desktop.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/filter-facets/visual/mobile.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/filter-facets/visual/tablet.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/listing-card/ga/_specs.js                          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/listing-card/ga/desktop.js                         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/listing-card/ga/mobile.js                          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/listing-card/ga/tablet.js                          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/personalization-banner/ga/_specs.js                │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/personalization-banner/ga/desktop.js               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/personalization-banner/ga/mobile.js                │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/personalization-banner/ga/tablet.js                │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/related-categories/ga/desktop.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/related-categories/ga/mobile.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/related-categories/ga/tablet.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/sorting-overlay/ga/_specs.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/sorting-overlay/ga/desktop.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/sorting-overlay/ga/mobile.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/sorting-overlay/ga/tablet.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/sorting-overlay/visual/_specs.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/sorting-overlay/visual/desktop.js                  │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/sorting-overlay/visual/mobile.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/serp-page/sorting-overlay/visual/tablet.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/single-review-page/review-card/ga/desktop.js                 │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/single-review-page/review-card/ga/mobile.js                  │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/single-review-page/review-card/ga/tablet.js                  │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/browse/_seo/_specs.js                           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/browse/_seo/head-desktop.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/browse/_seo/head-mobile.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/browse/_seo/head-tablet.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/community-guidelines/_seo/_specs.js             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/community-guidelines/_seo/head-desktop.js       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/community-guidelines/_seo/head-mobile.js        │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/community-guidelines/_seo/head-tablet.js        │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/general-user-terms/_seo/_specs.js               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/general-user-terms/_seo/head-deskop.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/general-user-terms/_seo/head-mobile.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/general-user-terms/_seo/head-tablet.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/glossary/_seo/_specs.js                         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/glossary/_seo/head-desktop.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/glossary/_seo/head-mobile.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/glossary/_seo/head-tablet.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/press/_seo/_specs.js                            │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/press/_seo/head-desktop.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/press/_seo/head-mobile.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/press/_seo/head-tablet.js                       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/privacy-policy/_seo/_specs.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/privacy-policy/_seo/head-desktop.js             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/privacy-policy/_seo/head-mobile.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/privacy-policy/_seo/head-tablet.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/reviews-faq/_seo/_specs.js                      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/reviews-faq/_seo/head-desktop.js                │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/reviews-faq/_seo/head-mobile.js                 │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/pages/static-pages/reviews-faq/_seo/head-tablet.js                 │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/components/basket/wip.visual.js                          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/alternatives-page/filter-facets/visual.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/alternatives-page/listing-card/visual.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/alternatives-page/product-info-card/visual.js      │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/alternatives-page/summary/visual.js                │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/add-to-compare/visual.js       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/alternatives/visual.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/header/visual.js               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/integrations/visual.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/key-features/visual.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/overview/visual.js             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/pricing/visual.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/screenshots/visual.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/sidenav/visual.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-hybrid-page/user-reviews/visual.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/add-to-compare/visual.js       │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/alternatives/visual.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/header/visual.js               │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/integrations/visual.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/key-features/visual.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/overview/visual.js             │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/pricing/visual.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/screenshots/visual.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/sidenav/visual.js              │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/compare-normal-page/user-reviews/visual.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/listing-page/faq/visual.js                         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/listing-page/overview/visual.js                    │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/listing-page/popular-comparisons/visual.js         │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/listing-page/pricing/visual.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/listing-page/related-categories/visual.js          │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/listing-page/review-card/visual.js                 │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/listing-page/review-video-card/visual.js           │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/listing-page/reviews/visual.js                     │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/serp-page/buyers-guide/visual.js                   │ integration │
├────────────────────────────────────────────────────────────────────────────────────────┼─────────────┤
│ cypress/integration/wipvisual/pages/single-review-page/review-card/visual.js           │ integration │
└────────────────────────────────────────────────────────────────────────────────────────┴─────────────┘
2021-11-14T20:15:11.202Z cypress:server:specs looking for test specs in the folder: cypress/integration
2021-11-14T20:15:11.203Z cypress:server:specs there is no spec pattern
2021-11-14T20:15:11.203Z cypress:server:specs globbing test files "**/*.*"
2021-11-14T20:15:11.203Z cypress:server:specs glob options { sort: true, absolute: true, nodir: true, cwd: 'cypress/integration', ignore: [ '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/support/index.js', '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/fixtures/**/*' ] }
2021-11-14T20:15:11.291Z cypress:server:specs [
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/functional/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/functional/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/functional/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/functional/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/visual/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/visual/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/visual/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/visual/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/basket/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/basket/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/basket/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/basket/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/breadcrumb-bar/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/breadcrumb-bar/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/breadcrumb-bar/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/breadcrumb-bar/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/functional/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/functional/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/functional/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/functional/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/visual/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/visual/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/visual/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/visual/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/functional/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/functional/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/functional/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/functional/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/visual/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/visual/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/visual/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/visual/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/visual/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/visual/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/visual/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/visual/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/visual/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/visual/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/visual/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/visual/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/functional/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/functional/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/functional/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/functional/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/visual/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/visual/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/visual/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/visual/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/wipvisualwip/wip.desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/wipvisualwip/wip.mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/wipvisualwip/wip.tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/functional/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/functional/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/functional/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/functional/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/ga/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/ga/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/ga/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/ga/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/visual/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/visual/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/visual/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/visual/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/mock/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/mock/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/mock/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/real/desktop.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/real/mobile.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/real/tablet.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/_seo/_specs.js',
  '/Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/_seo/head-desktop.js',
  ... 552 more items
]
2021-11-14T20:15:11.296Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/functional/_specs.js
2021-11-14T20:15:11.296Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/functional/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/functional/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/functional/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/ga/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/ga/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/ga/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/ga/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/visual/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/visual/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/visual/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/app-bar/visual/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/basket/ga/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/basket/ga/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/basket/ga/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/basket/ga/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/breadcrumb-bar/ga/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/breadcrumb-bar/ga/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/breadcrumb-bar/ga/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/breadcrumb-bar/ga/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/functional/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/functional/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/functional/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/functional/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/ga/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/ga/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/ga/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/ga/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/visual/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/visual/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/visual/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/footer/visual/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/functional/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/functional/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/functional/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/functional/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/ga/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/ga/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/ga/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/ga/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/visual/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/visual/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/visual/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-intl/visual/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/ga/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/ga/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/ga/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/ga/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/visual/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/visual/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/visual/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-join/visual/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/ga/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/ga/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/ga/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/ga/tablet.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/visual/_specs.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/visual/desktop.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/visual/mobile.js
2021-11-14T20:15:11.297Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/modal-signin/visual/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/functional/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/functional/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/functional/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/functional/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/ga/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/ga/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/ga/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/ga/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/visual/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/visual/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/visual/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/pagination/visual/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/ga/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/ga/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/ga/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/ga/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/wipvisualwip/wip.desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/wipvisualwip/wip.mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/search/wipvisualwip/wip.tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/functional/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/functional/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/functional/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/functional/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/ga/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/ga/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/ga/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/ga/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/visual/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/visual/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/visual/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/components/tabs/visual/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/mock/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/mock/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/mock/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/real/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/real/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/_smoke-visual/real/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/_seo/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/_seo/head-desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/_seo/head-mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/_seo/head-tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/card/ga/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/card/ga/desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/card/ga/mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/about-page/card/ga/tablet.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/_seo/_specs.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/_seo/head-desktop.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/_seo/head-mobile.js
2021-11-14T20:15:11.298Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/_seo/head-tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/_seo/header.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/filter-facets/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/filter-facets/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/filter-facets/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/filter-facets/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/listing-card/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/listing-card/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/listing-card/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/listing-card/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/product-info-card/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/product-info-card/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/product-info-card/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/product-info-card/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/summary/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/summary/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/summary/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/alternatives-page/summary/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/_seo/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/_seo/head-desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/_seo/head-mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/_seo/head-tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/_seo/header.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/banner/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/banner/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/banner/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/banner/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/listing-card/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/listing-card/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/listing-card/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/category-leaders-page/listing-card/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/_seo/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/_seo/head-desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/_seo/head-mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/_seo/head-tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/_seo/header.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/add-to-compare/functional/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/add-to-compare/functional/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/add-to-compare/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/add-to-compare/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/alternatives/functional/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/alternatives/functional/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/alternatives/functional/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/alternatives/functional/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/alternatives/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/alternatives/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/alternatives/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/alternatives/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/header/functional/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/header/functional/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/header/functional/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/header/functional/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/header/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/header/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/header/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/header/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/integrations/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/integrations/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/integrations/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/integrations/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/key-features/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/key-features/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/key-features/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/key-features/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/overview/functional/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/overview/functional/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/overview/functional/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/overview/functional/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/overview/ga/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/overview/ga/desktop.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/overview/ga/mobile.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/overview/ga/tablet.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/pricing/functional/_specs.js
2021-11-14T20:15:11.299Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/pricing/functional/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/pricing/functional/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/pricing/functional/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/pricing/ga/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/pricing/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/pricing/ga/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/pricing/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/screenshots/functional/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/screenshots/functional/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/screenshots/functional/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/screenshots/functional/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/screenshots/ga/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/screenshots/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/screenshots/ga/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/screenshots/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/sidenav/functional/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/sidenav/functional/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/sidenav/functional/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/sidenav/ga/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/sidenav/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/sidenav/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/user-reviews/functional/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/user-reviews/functional/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/user-reviews/functional/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/user-reviews/functional/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/user-reviews/ga/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/user-reviews/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/user-reviews/ga/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-hybrid-page/user-reviews/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/_seo/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/_seo/head-desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/_seo/head-mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/_seo/head-tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/_seo/header.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/add-to-compare/functional/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/add-to-compare/functional/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/add-to-compare/functional/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/add-to-compare/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/add-to-compare/ga/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/add-to-compare/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/alternatives/functional/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/alternatives/functional/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/alternatives/functional/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/alternatives/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/alternatives/ga/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/alternatives/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/header/functional/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/header/functional/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/header/functional/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/header/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/header/ga/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/header/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/integrations/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/integrations/ga/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/integrations/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/key-features/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/key-features/ga/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/key-features/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/overview/functional/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/overview/functional/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/overview/functional/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/overview/functional/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/overview/ga/_specs.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/overview/ga/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/overview/ga/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/overview/ga/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/pricing/functional/desktop.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/pricing/functional/mobile.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/pricing/functional/tablet.js
2021-11-14T20:15:11.300Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/pricing/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/pricing/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/pricing/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/screenshots/functional/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/screenshots/functional/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/screenshots/functional/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/screenshots/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/screenshots/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/screenshots/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/screenshots/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/sidenav/functional/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/sidenav/functional/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/sidenav/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/sidenav/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/user-reviews/functional/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/user-reviews/functional/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/user-reviews/functional/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/user-reviews/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/user-reviews/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/compare-normal-page/user-reviews/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/features-page/_seo/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/features-page/_seo/head-desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/features-page/_seo/head-mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/features-page/_seo/head-tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/_seo/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/_seo/head-desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/_seo/head-mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/_seo/head-tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/_seo/header.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/latest-insights/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/latest-insights/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/latest-insights/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/latest-insights/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/related-categories/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/related-categories/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/related-categories/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/related-categories/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/related-listings/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/related-listings/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/related-listings/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/related-listings/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/search/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/search/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/search/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/home-page/search/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/integrations-page/_seo/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/integrations-page/_seo/head-desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/integrations-page/_seo/head-mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/integrations-page/_seo/head-tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/_seo/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/_seo/head-desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/_seo/head-mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/_seo/head-tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/_seo/header.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/alternative-cards/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/alternative-cards/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/alternative-cards/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/alternative-cards/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/faq/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/faq/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/faq/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/faq/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/features/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/features/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/features/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/features/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/overview/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/overview/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/overview/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/overview/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/popular-comparisons/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/popular-comparisons/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/popular-comparisons/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/popular-comparisons/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/pricing/ga/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/pricing/ga/desktop.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/pricing/ga/mobile.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/pricing/ga/tablet.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/product-info-card/functional/_specs.js
2021-11-14T20:15:11.301Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/product-info-card/functional/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/product-info-card/functional/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/product-info-card/functional/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/product-info-card/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/product-info-card/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/product-info-card/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/product-info-card/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/related-categories/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/related-categories/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/related-categories/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/review-card/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/review-card/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/review-card/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/review-card/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/review-video-card/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/review-video-card/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/review-video-card/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/review-video-card/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/user-reviews/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/user-reviews/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/user-reviews/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/listing-page/user-reviews/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/pricing-page/_seo/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/pricing-page/_seo/head-desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/pricing-page/_seo/head-mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/pricing-page/_seo/head-tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/_seo/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/_seo/head-desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/_seo/head-mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/_seo/head-tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/_seo/header.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/author-card/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/author-card/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/author-card/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/author-card/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/body/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/body/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/body/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/body/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/cards/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/cards/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/cards/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/related-categories/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/related-categories/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/related-categories/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/related-categories/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/related-listings/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/related-listings/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/related-listings/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/related-listings/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/topic-list/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/topic-list/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/topic-list/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-article-page/topic-list/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/_seo/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/_seo/head-desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/_seo/head-mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/_seo/head-tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/_seo/header.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/author-card/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/author-card/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/author-card/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/cards/ga/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/cards/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/cards/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-author-page/cards/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/_seo/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/_seo/head-desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/_seo/head-mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/_seo/head-tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/_seo/header.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/cards/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/cards/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/cards/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/topic-list/ga/desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/topic-list/ga/mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-page/topic-list/ga/tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/_seo/_specs.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/_seo/head-desktop.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/_seo/head-mobile.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/_seo/head-tablet.js
2021-11-14T20:15:11.302Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/_seo/header.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/cards/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/cards/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/cards/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/related-categories/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/related-categories/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/related-categories/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/topic-list/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/topic-list/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/resources-topic-page/topic-list/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/_seo/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/_seo/head-desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/_seo/head-mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/_seo/head-tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/_seo/header.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/filter-facets/ga/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/filter-facets/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/filter-facets/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/filter-facets/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/filter-facets/visual/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/filter-facets/visual/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/filter-facets/visual/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/filter-facets/visual/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/product-info-card/functional/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/product-info-card/functional/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/product-info-card/functional/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/product-info-card/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/product-info-card/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/product-info-card/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-card/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-card/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-card/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-summary/ga/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-summary/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-summary/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-summary/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-video-card/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-video-card/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/review-video-card/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/search/ga/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/search/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/search/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/search/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/sort/ga/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/sort/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/sort/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/reviews-page/sort/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/_seo/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/_seo/head-desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/_seo/head-mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/_seo/head-tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/_seo/header.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/buyers-guide/functional/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/buyers-guide/functional/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/buyers-guide/functional/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/buyers-guide/functional/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/buyers-guide/ga/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/buyers-guide/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/buyers-guide/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/buyers-guide/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/product-card/functional/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/product-card/functional/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/product-card/functional/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/product-card/functional/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/product-card/ga/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/product-card/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/product-card/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-bing-page/product-card/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/_seo/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integrationCan't run because no spec files were found.

We searched for any files matching this glob pattern:

cypress/integration/**/{functional,ga}/desktop.js

Relative to the project root folder:

/Users/megarcia/Documents/GitHub/getapp-cypress-testing
/pages/sem-google-page/_seo/head-desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/_seo/head-mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/_seo/head-tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/_seo/header.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/product-card/functional/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/product-card/functional/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/product-card/functional/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/product-card/functional/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/product-card/ga/_specs.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/product-card/ga/desktop.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/product-card/ga/mobile.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-google-page/product-card/ga/tablet.js
2021-11-14T20:15:11.303Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/alternatives/functional/_specs.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/alternatives/functional/desktop.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/alternatives/functional/mobile.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/alternatives/functional/tablet.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/alternatives/ga/_specs.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/alternatives/ga/desktop.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/alternatives/ga/mobile.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/alternatives/ga/tablet.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/overview/functional/_specs.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/overview/functional/desktop.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/overview/functional/mobile.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/overview/functional/tablet.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/overview/ga/_specs.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/overview/ga/desktop.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/overview/ga/mobile.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/overview/ga/tablet.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/product-info-card/functional/_specs.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/product-info-card/functional/desktop.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/product-info-card/functional/mobile.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/product-info-card/functional/tablet.js
2021-11-14T20:15:11.304Z cypress:server:specs found spec file /Users/megarcia/Documents/GitHub/getapp-cypress-testing/cypress/integration/pages/sem-listing-page/product-info-card/ga/_specs.js
2021-11-14T20:15:11.304Z cypress:%

@cypress-bot cypress-bot bot added stage: needs review The PR code is done & tested, needs review stage: work in progress and removed stage: ready for work The issue is reproducible and in scope stage: needs review The PR code is done & tested, needs review stage: work in progress labels Jan 5, 2022
@hang-up
Copy link
Contributor Author

hang-up commented Jan 5, 2022

Having a bit of time during this beginning of the year, I took a deeper look at this issue which seems to still be ongoing for the latest version released (9.2.0).
This problem happens whenever the glob pattern presents a comma, as the string is parsed & treated as an array without enough validation.
I have opened a PR here to propose a fix!

On the topic of globs, I'd also like to suggest a documentation update surrounding the usage of double quotes. Particularly this snippet

Run tests within the folder matching the glob (Note: Using double quotes is strongly recommended).

(which can be found at https://docs.cypress.io/guides/guides/command-line#cypress-run) doesn't hold true when the pattern submitted has exclamation mark.
On bash, this will usually result in -bash: !: event not found. The solution for this is to wrap the pattern between single quotes. I'll open another PR!

@jennifer-shehane
Copy link
Member

@hang-up Yah, the note about double quotes is mostly for Windows users as weird things happen when they don't add double quotes generally.

@cypress-bot cypress-bot bot added stage: work in progress stage: needs review The PR code is done & tested, needs review and removed stage: needs review The PR code is done & tested, needs review stage: work in progress labels Jan 5, 2022
@cypress-bot
Copy link
Contributor

cypress-bot bot commented Jan 18, 2022

The code for this is done in cypress-io/cypress#19557, but has yet to be released.
We'll update this issue and reference the changelog when it's released.

@cypress-bot cypress-bot bot removed the stage: needs review The PR code is done & tested, needs review label Jan 18, 2022
@cypress-bot
Copy link
Contributor

cypress-bot bot commented Jan 18, 2022

Released in 9.3.0.

This comment thread has been locked. If you are still experiencing this issue after upgrading to
Cypress v9.3.0, please open a new issue.

@cypress-bot cypress-bot bot locked as resolved and limited conversation to collaborators Jan 18, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants