Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grep-tests-from-pull-requests

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grep-tests-from-pull-requests - npm Package Compare versions

Comparing version 1.9.0 to 1.9.1

2

package.json
{
"name": "grep-tests-from-pull-requests",
"version": "1.9.0",
"version": "1.9.1",
"description": "Grabs the test tags to run from the pull request text",

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

@@ -120,4 +120,12 @@ # grep-tests-from-pull-requests

Will add the values `{num: 1, correct: true, FRIENDLY_GREETING: "Hello"}` to the `Cypress.env`
Will add the values `{num: 1, correct: true, FRIENDLY_GREETING: "Hello"}` to the `Cypress.env`. Note: an empty value is converted to `undefined`.
```
CYPRESS_age=
# will produce
{ age: undefined }
```
If you really want to skip a value, prefix it somehow, like `xCYPRESS_...=value`
## Aliases

@@ -124,0 +132,0 @@

@@ -21,2 +21,6 @@ /**

function cast(str) {
if (typeof str === 'undefined' || str === '') {
return undefined
}
if (str === 'true') {

@@ -23,0 +27,0 @@ return true

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