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.15.1 to 1.15.2

3

cypress/integration/2-advanced-examples/files.spec.js

@@ -46,4 +46,3 @@ /// <reference types="cypress" />

// or use "cy.wrap" and "should('deep.equal', ...)" assertion
// @ts-ignore
cy.wrap(this.example, 'fixture vs require')
cy.wrap(this.example)
.should('deep.equal', requiredExample)

@@ -50,0 +49,0 @@ })

@@ -26,3 +26,2 @@ /// <reference types="cypress" />

// Clear key matching string in Local Storage
cy.get('.ls-btn').click().should(() => {

@@ -34,2 +33,3 @@ expect(localStorage.getItem('prop1')).to.eq('red')

// Clear key matching string in Local Storage
cy.clearLocalStorage('prop1').should((ls) => {

@@ -41,3 +41,2 @@ expect(ls.getItem('prop1')).to.be.null

// Clear keys matching regex in Local Storage
cy.get('.ls-btn').click().should(() => {

@@ -49,2 +48,3 @@ expect(localStorage.getItem('prop1')).to.eq('red')

// Clear keys matching regex in Local Storage
cy.clearLocalStorage(/prop1|2/).should((ls) => {

@@ -51,0 +51,0 @@ expect(ls.getItem('prop1')).to.be.null

{
"name": "cypress-example-kitchensink",
"version": "1.15.1",
"version": "1.15.2",
"description": "This is an example app used to showcase Cypress.io testing. For a full reference of our documentation, go to https://docs.cypress.io",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

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