Skip to content

Latest commit

 

History

History
33 lines (21 loc) · 688 Bytes

prefer-to-be-undefined.md

File metadata and controls

33 lines (21 loc) · 688 Bytes

Suggest using toBeUndefined() (prefer-to-be-undefined)

In order to have a better failure message, toBeUndefined() should be used upon asserting expectations on undefined value.

Rule details

This rule triggers a warning if toBe(), toEqual() or toStrictEqual() is used to assert an undefined value.

expect(undefined).toBe(undefined);

This rule is enabled by default.

Default configuration

The following patterns are considered warnings:

expect(undefined).toBe(undefined);

expect(undefined).toEqual(undefined);

expect(undefined).toStrictEqual(undefined);

The following pattern is not warning:

expect(undefined).toBeUndefined();