This rule is enabled by default.
This rule triggers a warning if expect
is called without a matcher.
expect("something");
or when a matcher function was not called:
expect(true).toBeDefined
The following patterns are not warnings:
expect("something").toEqual("something");
expect([1, 2, 3]).toEqual([1, 2, 3]);
expect(true).toBeDefined();