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

fp-ts-quickcheck

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fp-ts-quickcheck

  • 0.8.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

fp-ts-test

fp-ts port of Haskell's QuickCheck.

NOTE Please note that shrinking is exposed, but not used in the assertions. When used in the assertions, this library will be ready for production use.

Features

  • Pure - Purely functional implementation.
  • Compatible - Easily integrates into existing testing frameworks.
  • Extensible - Customize what testable property's are.
  • Shrinking (in progress) - Let the software decide what the minimum value that is causing an error.

Installation

yarn add -D fp-ts-quickcheck

Quick Start

Grab your favourite test library, in this case jest, and put the assertion call of this library into the test caller.

export function add(x: number, y: number) {
  return x + y
}

import { quickcheck, arbitrary } from "fp-ts-quickcheck"
import { expect, it, describe } from "@jest/globals"
import { pipe } from "fp-ts/function"

describe(add, () => {
  const numnum = arbitrary.tuple(arbitraty.int(), arbitrary.int())

  it("should be an associative operation", () => {
    // returning a boolean
    quickcheck.sync(numnum, ([x, y]) => add(y, x) === add(x, y))
  })

  it("should be an associative operation", () => {
    // throwing an assertion error
    quickcheck.sync(numnum, ([x, y]) => {
      expect(add(x, y)).toBe(add(y, x))
    })
  })
})

FAQs

Package last updated on 07 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

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