test('Output diff to plain text format', () => {
    const result = fs.readFileSync(resultPlainPath, 'utf8');
    expect(genDiff(firstJsonPath, secondJsonPath, 'plain')).toBe(result);
  });