1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-15 09:04:04 +02:00
joplin/packages/plugin-repo-cli/lib/errorsHaveChanged.test.ts
2022-11-15 10:23:50 +00:00

66 lines
888 B
TypeScript

import errorsHaveChanged from './errorsHaveChanged';
describe('errorsHaveChanged', () => {
test('should tell if an errors object has changed', () => {
const testCases = [
[
{
'one': '111',
'two': '222',
},
{
'two': '222',
'one': '111',
},
false,
],
[
{
'one': '111',
'two': '222',
},
{
'one': '111',
'two': '222',
},
false,
],
[
{
'one': '111',
'two': '222',
},
{
'one': '111',
},
true,
],
[
{
'one': '111',
'two': '222',
},
{
'one': '222',
'two': '111',
},
true,
],
[
{},
{},
false,
],
];
for (const t of testCases) {
const [oldErrors, newErrors, expected] = t as any;
const result = errorsHaveChanged(oldErrors, newErrors);
expect(result).toBe(expected);
}
});
});