Socket
Book a DemoInstallSign in
Socket

expecto-patronum

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

expecto-patronum

Function with predicates. Made for fun

0.0.1
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

expecto('cast', patronum => {...})

Function with predicates

Not supposed to have a lot of usage, it's made just for fun.

npm i expecto-patronum
import { expecto } from 'expecto-patronum'

/**
 * For now works with sync stuff only
 */
expecto(
  'All tests should PASS',
  patronum => {
    /**
     * For now that's all predicates here listed, lol
     */
    patronum(0).beFalsy()
    patronum(1).beEqual(1)
    patronum(2).beSame(2)
    patronum(3).beTruthy()
    patronum({ a: 'a', b: 'b' }).beEquallyStringified({ a: 'a', b: 'b' })
  },
  /**
   * Callback gets { fail: number; success: number; }
   * So it could be just console.log as a callback
   */
  tests => console.log(tests)
)

expecto(
  'All tests should FAIL',
  patronum => {
    patronum(1).beFalsy()
    patronum(2).beEqual(3)
    patronum([]).beSame([])
    patronum(0).beTruthy()
    patronum({ a: 'a', b: 'b' }).beEquallyStringified({ b: 'b', a: 'a' })
  },
  console.log
)

Keywords

javascript

FAQs

Package last updated on 08 Jul 2019

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.