Skip to content
On this page

API Reference

Synopsis

Core

Validators

Modifiers

Matchers

Mocks

Reference

Core

function expect<T>(actual: T, options?: ExpectationOptions): Expectation<T>

The expect function is used every time you want to test a value.

Parameters:

  • actual - the value to match against.
  • options - optional configuration.

Validators

.toBeA(clazz: NewableOrPrimitive): void

Checks if the value is an instance of a provided class or a primitive type. Works as expected with builtin types like strings, numbers, dates.

  1. expect.a(MyClass) - matches new MyClass, but not new Other()
  2. expect.a(String) - matches "foo", but not 123

Parameters:

  • clazz - type class or primitive constructor to match against.

Examples:

ts
expect(object).toBeA(MyClass) // checks if object is instance of `MyClass`, but not `Other`
expect(foo).toBeA(String) // checks if foo is instance of string
expect(foo).toBeA(Object) // matches any object (not null)

.toBeAContainerWith(...expectedItems: T[]): void

Checks if the value is an iterable containing all of the provided items. Internally, container is first turned into array and toBeAnArrayWith is used for final comparison.

Parameters:

  • expectedItems - values or matchers to look for in the matched iterable. Order of the items doesn't matter.

Examples:

ts
expect([1, 2, 3]).toBeAContainerWith(1, 2)

.toBeAnArrayOfLength(length: number): void

Checks if the values is an array containing exactly given number of items.

Parameters:

  • length - expected array length. Can be a matcher.

Examples:

ts
expect([1, 2, 3]).toBeAnArrayOfLength(3)
expect([1, 2, 3]).toBeAnArrayOfLength(expect.numberGreaterThanOrEqualTo(3)))

.toBeAnArrayWith(...expectedItems: readonly any[]): void

Checks if the value is an array containing all of the provided items. Each expected item must be matched uniquely.

Parameters:

  • expectedItems - values or matchers to look for in the matched array. Order of the items doesn't matter.

Examples:

ts
expect([1, 2, 3]).toBeAnArrayWith(1)
expect([1]).toBeAnArrayWith(1, 1) // throws b/c a second "1" is missing

.toBeAnObjectWith(subset: object): void

Checks if the value is an object containing given key-value pairs.

Parameters:

  • subset - an object to match against.

Examples:

ts
expect({ a: 1, b: 2, c: 3 }).toBeAnObjectWith({ b: 2, a: 1 })

.toBeDefined(): void

Checks if the value is different to undefined and null.

Examples:

ts
expect(0).toBeDefined()
expect(null).not.toBeDefined()

.toBeExhausted(): void

Checks if all the expected calls to the mock have been performed.

.toBeFalsy(): void

Checks if the value is falsy.

Examples:

ts
expect(0).toBeFalsy()
expect(true).not.toBeFalsy()

There are six falsy values in JavaScript: false, 0, '', null, undefined, and NaN. Everything else is truthy.

.toBeGreaterThan(target: number): void

Checks if the value is greater than the provided target.

Parameters:

  • target - number to check against.

Examples:

ts
expect(2).toBeGreaterThan(1)
expect(1).not.toBeGreaterThan(1)
expect(-3).not.toBeGreaterThan(1)

.toBeGreaterThanOrEqualTo(target: number): void

Checks if the value is greater than or equal to the provided target.

Parameters:

  • target - number to check against.

Examples:

ts
expect(2).toBeGreaterThanOrEqualTo(1)
expect(1).toBeGreaterThanOrEqualTo(1)
expect(-3).not.toBeGreaterThanOrEqualTo(1)

.toBeLessThan(target: number): void

Checks if the value is less than the provided target.

Parameters:

  • target - number to check against.

Examples:

ts
expect(-3).toBeLessThan(1)
expect(1).not.toBeLessThan(1)
expect(2).not.toBeLessThan(1)

.toBeLessThanOrEqualTo(target: number): void

Checks if the value is less than or equal the provided target.

Parameters:

  • target - number to check against.

Examples:

ts
expect(-3).toBeLessThanOrEqualTo(1)
expect(1).toBeLessThanOrEqualTo(1)
expect(2).not.toBeLessThanOrEqualTo(1)

.toBeNullish(): void

Checks if the value is undefined or null.

Examples:

ts
expect(undefined).toBeNullish()
expect(false).not.toBeNullish()

.toBeRejected(errorClass: Newable<Error>, message?: string): Promise<void>

Awaits the provided promise and expects it to be rejected. The error's class and message are also checked.

Parameters:

  • errorClass - expected class of the thrown error.
  • message - string or matcher to check the message against.

.toBeRejected(message?: string): Promise<void>

Awaits the provided promise and expects it to be rejected. The message of the error is also checked.

Parameters:

  • message - string or matcher to check the message against.

Examples:

ts
const promise = Promise.reject(new Error('oops, sorry'))

await expect(promise).toBeRejected(Error, 'oops')
await expect(promise).not.toBeRejected(TypeError)

.toBeTruthy(): void

Checks if the value is truthy.

Examples:

ts
expect(1).toBeTruthy()
expect(false).not.toBeTruthy()

There are six falsy values in JavaScript: false, 0, '', null, undefined, and NaN. Everything else is truthy.

.toEqual(value: ExpectedEqual<T>): void

Performs a recursive equality check. Objects are equal if their fields are equal and they share the same prototype.

You can use matchers in place of a value. When a matcher is encountered its internal rules are used instead of the usual checks.

Parameters:

  • value - value to check against.

Examples:

ts
expect('foo').toEqual('foo') // Equality check against primitive value
expect([1, { a: 2 }]).toEqual([1, { a: expect.a(Number) }]) // Usage with "a" matcher
expect({ a: 2, b: 2 }).not.toEqual({ a: 2 }) // Negated equality check

.toHaveBeenCalledExactlyWith(args: MockArgs<T>[]): void

Checks the entire history of mock calls.

You can use matchers in place of a value. When a matcher is encountered its internal rules are used instead of the usual checks.

Parameters:

  • args - an array where each item is an array of values or matchers to check the mock call against.

.toHaveBeenCalledWith(args: MockArgs<T>): void

Check if the mock has been called with the provided arguments.

You can use matchers in place of a value. When a matcher is encountered its internal rules are used instead of the usual checks.

Parameters:

  • args - an array of values or matchers to check the mock calls against.

.toLooseEqual(value: any): void

Performs a recursive equality check. Objects are equal if their fields are equal. Object prototypes are ignored.

You can use matchers in place of a value. When a matcher is encountered its internal rules are used instead of the usual checks.

Parameters:

  • value - value to check against.

Examples:

ts
class A {
  a = 1
}

// using toEqual requires matching prototypes
expect(new A()).not.toEqual({ a: 1 })
// toLooseEqual ignores prototypes and focuses only on the value
expect(new A()).toLooseEqual({ a: 1 })

.toMatchSnapshot(context: TestContext): void

Checks that the value is the same as in the previous test execution.

.toReferentiallyEqual(value: T): void

Performs a referential equality check using Object.is. It is similar to ===, with two differences:

  1. Object.is(-0, +0) returns false
  2. Object.is(NaN, NaN) returns true

This function should be used if you care about object identity rather than deep equality.

Parameters:

  • value - value to check against.

Examples:

ts
const x = {}
expect(x).toReferentiallyEqual(x)
expect({}).not.toReferentiallyEqual(x)
expect(NaN).toReferentiallyEqual(NaN)

.toThrow(errorClass: Newable<Error>, message?: string): void

Calls the provided function and expects an error to be thrown. The error's class and message are also checked.

Parameters:

  • errorClass - expected class of the thrown error.
  • message - string or matcher to check the message against.

Examples:

ts
const doThrow = () => {
  throw new Error('oops, sorry')
}

expect(() => doThrow()).toThrow(Error, 'oops')
expect(() => doThrow()).not.toThrow(TypeError)

.toThrow(message?: string): void

Calls the provided function and expects an error to be thrown. The message of the error is also checked.

Parameters:

  • message - string or matcher to check the message against.

Examples:

ts
const doThrow = () => { throw new Error('oops, sorry') }

expect(() => doThrow()).toThrow('oops')
expect(() => doThrow()).not.toThrow(expect.stringMatching(/end$/))

Modifiers

.not(): Expectation<T>

Inverts the behaviour of the validator that follows.

Examples:

ts
expect(3).toEqual(4) // ❌
expect(3).not.toEqual(4) // ✅

Matchers

expect.a<T>(type: NewableOrPrimitive<T>): Class2Primitive<T>

Matches an instance of a provided class or a primitive type. Works as expected with builtin types like strings, numbers, dates.

  1. expect.a(MyClass) - matches new MyClass, but not new Other()
  2. expect.a(String) - matches "foo", but not 123

Parameters:

  • type - class or primitive constructor to match against.

Examples:

ts
expect(something).toEqual(expect.a(MyClass)) // matches any object of instance MyClass but not `other`
expect(something).toEqual(expect.a(String)) // matches any string
expect(something).toEqual(expect.a(Object)) // matches any object (not null)

expect.anything(): any

Matches any value.

Examples:

ts
expect(null).toEqual(expect.anything())
expect({ a: 'something' }).toEqual({ a: expect.anything() })

expect.arrayOfLength<T>(length: number): T[]

Matches an array containing exactly given number of items.

Parameters:

  • length - expected array length. Can be a matcher.

expect.arrayWith<T>(...items: T[]): T[]

Matches an array containing the provided items.

Parameters:

  • items - values or matchers to look for in the matched array.

expect.containerWith(...items: any[]): any

Matches an iterable containing the provided items.

Parameters:

  • items - values or matchers to look for in the matched iterable.

expect.defined(): any

Matches any value that is not null or undefined.

Examples:

ts
expect({ a: 0 }).toEqual({ a: expect.defined() })
expect({ a: null }).not.toEqual({ a: expect.defined() })

expect.falsy(): any

Matches any falsy value.

Examples:

ts
expect({ a: 0 }).toEqual({ a: expect.falsy() })
expect([true]).not.toEqual([expect.falsy()])

There are six falsy values in JavaScript: false, 0, '', null, undefined, and NaN. Everything else is truthy.

expect.nullish(): any

Matches null and undefined

Examples:

ts
expect({ a: undefined }).toEqual({ a: expect.nullish() })
expect([null]).toEqual([expect.nullish()])

expect.numberCloseTo(target: number, options: NumberCloseToDelta): number

Matches numbers that are close to the target value. The options are used to specify the maximum difference.

The range is [expected - delta, expected + delta] (inclusive).

Parameters:

  • target - a number to aim for.
  • options - an object with the delta parameter, denoting the maximum difference between the values.

expect.numberGreaterThan(target: number): number

Matches a number greater than target.

Parameters:

  • target - number to compare to.

expect.numberGreaterThanOrEqualTo(target: number): number

Matches a number greater than or equal to target.

Parameters:

  • target - number to compare to.

Examples:

ts
expect({ a: 2 }).toEqual({
  a: expect.numberGreaterThanOrEqualTo(1),
})
expect({ b: 2 }).toEqual({
  b: expect.numberGreaterThanOrEqualTo(2),
})
expect({ c: 2 }).not.toEqual({
  c: expect.numberGreaterThanOrEqualTo(3),
})

expect.numberLessThan(target: number): number

Matches a number less than target.

Parameters:

  • target - number to compare to.

Examples:

ts
expect({ a: 2 }).toEqual({ a: expect.numberLessThan(3) })
expect({ b: 2 }).not.toEqual({ b: expect.numberLessThan(2) })
expect({ c: 2 }).not.toEqual({ c: expect.numberLessThan(1) })

expect.numberLessThanOrEqualTo(target: number): number

Matches a number less than or equal to target.

Parameters:

  • target - number to compare to.

Examples:

ts
expect({ a: 2 }).toEqual({
  a: expect.numberLessThanOrEqualTo(3),
})
expect({ b: 2 }).toEqual({
  b: expect.numberLessThanOrEqualTo(2),
})
expect({ c: 2 }).not.toEqual({
  c: expect.numberLessThanOrEqualTo(1),
})

expect.objectWith(subset: object): any

Matches an object containing given key-value pairs.

Parameters:

  • subset - an object to match against.

expect.stringMatching(pattern: string

Matches strings that contain the provided substring.

Parameters:

  • pattern - a string to look for in the matched values or a regexp to test the matched values.

expect.truthy(): any

Matches any truthy value.

Examples:

ts
expect({ a: 1 }).toEqual({ a: expect.truthy() })
expect([false]).not.toEqual([expect.truthy()])

There are six falsy values in JavaScript: false, 0, '', null, undefined, and NaN. Everything else is truthy.

Mocks

function mockFn<F extends (...args: any) => any>(defaultImpl?: F): Mock.Of<F>

Creates a mock conforming to a given signature.

Examples:

ts
const mock1 = mockFn<[number, string], number>()
const mock2 = mockFn<(a: number, b: string) => number>()

function mock(...args: TArgs): TReturn

Calls the mock function.

mock.calls: MockCall<TArgs, TReturn>[]

An array containing all the performed calls.

mock.executes(implementation: (...args: TArgs[]) => TReturn): Mock<TArgs, TReturn>

Sets the underlying implementation of the Mock. Overrides any previous configuration.

Parameters:

  • implementation - function to execute.

mock.executesOnce(implementation: (...args: TArgs[]) => TReturn): Mock<TArgs, TReturn>

Schedules the mock to use the provided implementation the next time it's called. If anything is already scheduled it will be used first.

Parameters:

  • implementation - function to execute.

mock.given<TGivenArgs extends TArgs>(...args: TGivenArgs): MockGiven<TArgs, TReturn, TGivenArgs>

Specifies a different behavior when other arguments are given

Parameters:

  • args - arguments to match.

mock.isExhausted(): boolean

Checks if all the expected calls to the mock have been performed.

mock.rejectsWith(error: any): Mock<TArgs, TReturn>

Sets the error rejected by calls to the Mock.

Parameters:

  • error - error to be thrown.

mock.rejectsWithOnce(error: any): Mock<TArgs, any>

Schedules the mock to reject with value the next time it's called. If anything is already scheduled it will be used first.

Parameters:

  • error - error to be thrown.

mock.resolvesTo(value: Awaited<TReturn>): Mock<TArgs, TReturn>

Sets the return value wrapped in Promise.resolve of calls to the Mock.

Parameters:

  • value - value to be returned.

mock.resolvesToOnce(value: Awaited<TReturn>): Mock<TArgs, TReturn>

Schedules the mock to return value wrapped in Promise.resolve the next time it's called. If anything is already scheduled it will be used first.

Parameters:

  • value - value to be returned.

mock.returns(value: TReturn): Mock<TArgs, TReturn>

Sets the return value of calls to the Mock. Overrides any previous configuration.

Parameters:

  • value - value to be returned.

mock.returnsOnce(value: TReturn): Mock<TArgs, TReturn>

Schedules the mock to return a value the next time it's called. If anything is already scheduled it will be used first.

Parameters:

  • value - value to be returned.

mock.throws(error: any): Mock<TArgs, TReturn>

Sets the error thrown by calls to the Mock. Overrides any previous configuration.

Parameters:

  • error - error to be thrown.

mock.throwsOnce(error: any): Mock<TArgs, TReturn>

Schedules the mock to throw an error the next time it's called. If anything is already scheduled it will be used first.

Parameters:

  • error - error to be thrown.

Released under the MIT License.