New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

find-test-names

Package Overview
Dependencies
Maintainers
1
Versions
85
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

find-test-names - npm Package Compare versions

Comparing version 1.18.0 to 1.19.0

2

package.json
{
"name": "find-test-names",
"version": "1.18.0",
"version": "1.19.0",
"description": "Given a Mocha / Cypress spec file, returns the list of suite and test names",

@@ -5,0 +5,0 @@ "main": "src",

@@ -18,3 +18,4 @@ const babel = require('@babel/parser')

const isIt = (node) =>
node.type === 'CallExpression' && node.callee.name === 'it'
node.type === 'CallExpression' &&
( node.callee.name === 'it' || node.callee.name === 'specify' )

@@ -24,3 +25,3 @@ const isItSkip = (node) =>

node.callee.type === 'MemberExpression' &&
node.callee.object.name === 'it' &&
( node.callee.object.name === 'it' || node.callee.object.name === 'specify' ) &&
node.callee.property.name === 'skip'

@@ -27,0 +28,0 @@

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