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

testcheck

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

testcheck - npm Package Compare versions

Comparing version 0.1.3 to 0.1.4

4

package.json
{
"name": "testcheck",
"version": "0.1.3",
"version": "0.1.4",
"description": "Property testing for JavaScript",

@@ -22,3 +22,3 @@ "homepage": "https://github.com/leebyron/testcheck-js",

"engines": {
"node": "^0.8.0"
"node": ">=0.8.0"
},

@@ -25,0 +25,0 @@ "files": [

@@ -1,4 +0,6 @@

Generative property testing for JavaScript
==========================================
TestCheck [![Build Status](https://travis-ci.org/leebyron/testcheck-js.svg)](https://travis-ci.org/leebyron/testcheck-js)
=========
Generative property testing for JavaScript.
`testcheck-js` is a library for generative testing of program properties,

@@ -52,6 +54,8 @@ ala QuickCheck.

var result = testcheck.check(testcheck.property(
[gen.int],
(x) => x - x === 0)
));
var result = testcheck.check(
testcheck.property(
[gen.int],
x => x - x === 0
)
);
```

@@ -58,0 +62,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