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

fp-ts-test

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fp-ts-test

  • 0.1.0
  • latest
  • npm
  • Socket score

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

fp-ts-test

fp-ts port of Haskell's QuickCheck and (not implemented yet) Python's Hypothesis.

Please note that shrinking is not yet available. Purescript did the same, so this should be enough to get you started.

NOTE: Still in development. It works, but the developer experience of the API surface needs some more additions.

Installation

This library does not exist on NPM yet, so use the built versions in this repo instead.

yarn add fp-ts && yarn add -D fp-ts-test

Quick Start

Grab your favourite test runner like jest, put the assertion call of this library into the caller.

// main.ts
export function subtract(x: number, y: number) {
  return x - y
}

// main.spec.ts
import { quickcheck as qc, arbitrary as AT } from "fp-ts-test"
import { expect, it, describe } from "@jest/globals"

import { pipe } from "fp-ts/function"

import { subtract } from "./main"

describe(subtract, () => {
  const arbitrary = qc.tuple(qc.number, qc.number)

  it(
    "should always be smaller than the first argument",
    pipe(
      arbitrary,
      // returns a thunk by default, because `qc.assert` throws
      qc.assert(([x, y]) => x > subract(x, y)),
    ),
  )

  it(
    "should matter which order the arguments are passed",
    pipe(
      arbitrary,
      // returns a thunk by default, because `qc.assert` throws
      qc.assert(([x, y]) => subtract(y, x) !== subract(x, y)),
    ),
  )
})

FAQs

Package last updated on 03 Oct 2021

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