UNPKG

@testing-library/cypress

Version:

Simple and complete custom Cypress commands and utilities that encourage good testing practices.

14 lines (12 loc) 303 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getFirstElement = getFirstElement; function getFirstElement(jqueryOrElement) { if (Cypress.dom.isJquery(jqueryOrElement)) { return jqueryOrElement.get(0); } return jqueryOrElement; } /* globals Cypress */