jest/prefer-to-contain Style 
What it does 
In order to have a better failure message, toContain() should be used upon asserting expectations on an array containing an object.
Why is this bad? 
TThis rule triggers a warning if toBe(), toEqual() or toStrictEqual() is used to assert object inclusion in an array
Examples 
Examples of incorrect code for this rule:
javascript
expect(a.includes(b)).toBe(true);
expect(a.includes(b)).not.toBe(true);
expect(a.includes(b)).toBe(false);
expect(a.includes(b)).toEqual(true);
expect(a.includes(b)).toStrictEqual(true);Examples of correct code for this rule:
javascript
expect(a).toContain(b);
expect(a).not.toContain(b);How to use 
To enable this rule in the CLI or using the config file, you can use:
bash
oxlint --deny jest/prefer-to-contain --jest-pluginjson
{
  "plugins": ["jest"],
  "rules": {
    "jest/prefer-to-contain": "error"
  }
}