all
config.
💡 This rule is manually fixable by editor suggestions.
// bad
expect(something).toEqual(somethingElse);
// good
expect(something).toStrictEqual(somethingElse);
all
config.
💡 This rule is manually fixable by editor suggestions.
// bad
expect(something).toEqual(somethingElse);
// good
expect(something).toStrictEqual(somethingElse);