🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@zoroaster/assert

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

@zoroaster/assert

The Assertion Library For Zoroaster Context Testing Framework Including Deep Equal & Assert Throws.

1.1.1
latest
Source
npm
Version published
Weekly downloads
652
-29.74%
Maintainers
1
Weekly downloads
 
Created
Source

@zoroaster/assert

npm version Pipeline Badge

@zoroaster/assert is An Assertion Library For Zoroaster Context Testing Framework Including Deep Equal & Assert Throws.

yarn add -D @zoroaster/assert

Table Of Contents

API

The package is available by importing its named functions:

import deepEqual,
  throws,
  assert,
  equal,
  ok,
} from '@zoroaster/assert'

deepEqual(
  actual: ?,
  expected: ?,
  message=: string,
): void

Calls assert.deepStrictEqual and then creates a visual representation of the difference between objects if it throws.

  • actual* ?undefined: The actual value.
  • expected* ?undefined: The expected value.
  • message string (optional): The message with which to fail if the assertion didn't succeed.

async assertThrows(
  config: _assertThrows.Config,
): void

Assert that a function throws and check the thrown error properties.

await throws({
  fn: method,
  args: ['test', true],
  message: /An error occurred:/, // regex
  code: 'ENOTEST',               // string
  stack(stack) {                 // function
    equal(stack.length, 2)
  }
})

!(string | RegExp | !Function) _assertThrows.Assertion: An assertion to perform.

_assertThrows.Config: Parameters to the assert-throws method.

NameTypeDescription
fn*!FunctionThe function to test, either sync or async.
args(* | !Array<*>)The arguments or single argument to pass to the function.
context*The context in which to execute the function. Global context will be set by default.
message_assertThrows.AssertionA string, regex, or function to test the message.
code_assertThrows.AssertionA string, regex, or function to test the code.
stack_assertThrows.AssertionA string, regex, or function to test the stack.
prop_assertThrows.AssertionA string, regex, or function to test any other property of the error.
errorErrorAn error to perform strict comparison against.

GNU Affero General Public License v3.0

Art Deco © Art Deco™ for ContextTesting 2020 ContextTesting AGPL-3.0

Keywords

assert

FAQs

Package last updated on 07 Apr 2020

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