Socket
Socket
Sign inDemoInstall

cypress-example-kitchensink

Package Overview
Dependencies
Maintainers
3
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cypress-example-kitchensink - npm Package Compare versions

Comparing version 1.4.0 to 1.5.0

2

cypress/fixtures/example.json

@@ -5,2 +5,2 @@ {

"body": "Fixtures are a great way to mock data for responses to routes"
}
}

@@ -54,4 +54,4 @@ /// <reference types="Cypress" />

matching = Cypress.minimatch("/users/1/comments/2", "/users/*/comments", {
matchBase: true
matching = Cypress.minimatch('/users/1/comments/2', '/users/*/comments', {
matchBase: true,
})

@@ -61,4 +61,4 @@ expect(matching, 'comments').to.be.false

// ** matches against all downstream path segments
matching = Cypress.minimatch("/foo/bar/baz/123/quux?a=b&c=2", "/foo/**", {
matchBase: true
matching = Cypress.minimatch('/foo/bar/baz/123/quux?a=b&c=2', '/foo/**', {
matchBase: true,
})

@@ -69,4 +69,4 @@ expect(matching, 'comments').to.be.true

matching = Cypress.minimatch("/foo/bar/baz/123/quux?a=b&c=2", "/foo/*", {
matchBase: false
matching = Cypress.minimatch('/foo/bar/baz/123/quux?a=b&c=2', '/foo/*', {
matchBase: false,
})

@@ -73,0 +73,0 @@ expect(matching, 'comments').to.be.false

@@ -13,14 +13,14 @@ // ***********************************************

// -- This is a parent command --
// Cypress.Commands.add("login", (email, password) => { ... })
// Cypress.Commands.add('login', (email, password) => { ... })
//
//
// -- This is a child command --
// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... })
// Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... })
//
//
// -- This is a dual command --
// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... })
// Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... })
//
//
// -- This is will overwrite an existing command --
// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... })
// Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... })
{
"name": "cypress-example-kitchensink",
"version": "1.4.0",
"version": "1.5.0",
"description": "This is an example app used to showcase Cypress.io testing. For a full reference of our documentation, go to docs.cypress.io",

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

"colon-names": "1.0.0",
"cypress": "3.1.1",
"eslint": "5.12.0",
"cypress": "3.1.5",
"eslint": "5.12.1",
"eslint-plugin-cypress": "2.2.0",

@@ -71,3 +71,3 @@ "eslint-plugin-cypress-dev": "2.0.0",

"stop-only": "3.0.1",
"typescript": "3.2.4"
"typescript": "3.3.1"
},

@@ -74,0 +74,0 @@ "engines": {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc