Это сценарий. Первый класс имеет метод getName
, а второй класс имеет свойство класса getName
. Первый класс работает с toEqual
, а второй - нет.
class Person01 {
constructor(name) { this.name = name; }
getName() { return this.name; }
}
class Person02 {
constructor(name) { this.name = name; }
getName = () => { return this.name; }
}
const testCases = [
[
// passes
new Person01('Alan', 'Kay'),
new Person01('Alan', 'Kay'),
],
[
// fails due to class properties
new Person02('Alan', 'Kay'),
new Person02('Alan', 'Kay'),
]
];
describe('when one class has the same values that another class has', () =>
testCases.forEach(pair =>
it('is considered to be equal to that class', () =>
expect(pair[0]).toEqual(pair[1]))));
Это сообщение об ошибке для второго класса.
Expected: {"firstName": "Alan", "getName": [Function anonymous], "lastName": "Kay"}
Received: {"firstName": "Alan", "getName": [Function anonymous], "lastName": "Kay"}
Наш текущий обходной путь - запустить JSON.parse(JSON.stringify(obj))
на фактических и ожидаемых значениях.
Вместо этого мы ищем вариант toEqual
, который работает со свойствами класса так же, как и с методами класса.
Вот наш файл babel.config.js.
module.exports = function (api) {
api.env();
const plugins = [
"@babel/proposal-class-properties",
];
return {
plugins,
};
}