Trying cy.get('.selector') - fail with TypeError: Cannot read property 'map' of null
When the "vue-fragment" component is included in the project, cypress, for some reason, cannot parse

I created a repository to reproduce:
https://github.com/shoomakov/cypress-issue
npm i
npm run serve
cd tests/e2e
npm i
npm run dev
Cypress v.4.0.2
Browser Chrome
I can recreate this. This was introduced in Cypress 3.8.2 - like by this PR https://github.com/cypress-io/cypress/pull/5916 cc @sainthkh
This error is being thrown here: https://github.com/cypress-io/cypress/blob/develop/packages/driver/src/dom/transform.ts#L180:L180
In this case the transform = "", which evaluates to null within transform.match(numberRegex)
One of the elements has empty strings for all these values for some reason.

Incorrectly determined element as not visible.

Erroring with 'Cannot read property map of null'

The cause of this problem is that vue-fragment creates a DOM element that returns empty CSSStyleDeclaration.
I'm trying to mock this behavior.
The code for this is done in cypress-io/cypress#6787, but has yet to be released.
We'll update this issue and reference the changelog when it's released.
Released in 4.3.0.
This comment thread has been locked. If you are still experiencing this issue after upgrading to
Cypress v4.3.0, please open a new issue.
Most helpful comment
The cause of this problem is that
vue-fragmentcreates a DOM element that returns empty CSSStyleDeclaration.I'm trying to mock this behavior.