Access to negated asymmetric matchers.
Symbol
Expect.not
not: ExpectNot
expect("abc").toEqual(expect.stringContaining("abc")); // will pass
expect("abc").toEqual(expect.not.stringContaining("abc")); // will fail