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

purify-asserts

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

purify-asserts

Jest expectations for the purify-ts library

  • 0.3.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
increased by20%
Maintainers
1
Weekly downloads
 
Created
Source

Purify-TS Asserts

Version Downloads License GitHub issues GitHub Repo stars

Jest expectations for the purify-ts library

Motivation

Purify is an excellent library for functional TypeScript applications, but its algebraic data types are not so obvious to test. Specifically, the following convention examples are not easy to remember in the scope of unit tests.

expect(maybe.isJust()).toBe(true);
expect(maybe.isNothing()).toBe(true);
expect(maybe.extract()).toEqual("value");

expect(either.isLeft()).toBe(false);
expect(either.isRight()).toBe(true);
expect(either.extract()).toEqual("is this success or error?");

Wouldn't it be more satisfying to assert expectations with the same domain language Purify speaks of? I think so.

expect(possiblyNullableMaybe).toBeJust();
expect(justOrNothing).toBeNothing();
expect(justOrNothing).toHaveJustValue(1);

Install

npm install --save-dev purify-asserts
yarn add --dev purify-asserts

Usage

Using matchers requires to use the expect.extend() method of Jest. These should be imported and used at the beginning of your test suite above the first describe() block.

Import all of the matchers:

import * as matchers from "purify-asserts";

expect.extend(matchers);

Import only selected matchers:

import { toBeJust, toBeNothing } from "purify-asserts";

expect.extend({ toBeJust, toBeNothing });

Examples

  • Examples for using Maybe<T> matchers
  • Examples for using Either<L, R> matchers (work in progress)
  • Examples for using MaybeAsync<T> matchers (work in progress)
  • Examples for using EitherAsync<L, R> matchers (work in progress)
  • Examples for using Tuple<F, S> matchers (work in progress)
  • Examples for using NonEmptyList<T> matchers (work in progress)
  • Examples for using Codec<T> matchers (work in progress)

Author

👤 Niko Heikkilä yo@nikoheikkila.fi

🤝 Contributing

Contributions, issues and feature requests are welcome!

Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!


This README was generated with ❤️ by readme-md-generator

FAQs

Package last updated on 25 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