0.1.1 • Published 2 years ago

@jerone/assert-includes v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

assert-includes

Assert string includes

Assert that an value is included in a string.

Install

Most likely you want to use this package as development dependency.

npm install @jerone/assert-includes --save-dev

Or with Yarn:

yarn install @jerone/assert-includes --dev

Usage

import assertIncludes from '@jerone/assert-includes';

test("value contains string", () => {
  assertIncludes("abc", "a");
});

If the test fails, it will throw an AssertionError, which can be picked up by your testing library.

For example with Jest, it will produce the following log:

Jest log

API

assertIncludes(value, includes)

Returns true if valid or throws AssertionError if invalid.

value

Type: string

Value expected to contain the included text.

includes

Type: string

The text that is part of the value.