You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

cypress-pipe

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cypress-pipe - npm Package Compare versions

Comparing version

to
2.0.1

4

package.json
{
"name": "cypress-pipe",
"version": "2.0.0",
"version": "2.0.1",
"description": "Create custom commands using plain-old functions",

@@ -33,4 +33,4 @@ "main": "index.js",

"devDependencies": {
"cypress": "^4.0.2"
"cypress": "^10.0.0"
}
}

@@ -68,6 +68,2 @@ # Cypress Pipe

cy.get('body')
.pipe(getFirst)
.should('contain', 'foobar')
// good

@@ -166,3 +162,3 @@ // synchronous resolution - pipe will retry `getFirst` until it returns a non-empty jQuery element list and contains the text 'foobar'

Add the following to your `cypress/support/index` file:
Add the following to your `cypress/support/commands.js` file:

@@ -169,0 +165,0 @@ ```ts