test('JSON output format of compare of YAML flat format differences', () => {
  const path1 = './__tests__/samplefiles/before.yml';
  const path2 = './__tests__/samplefiles/after.yml';
  expect(genDiff(path1, path2, 'json')).toBe(jsonExpected);
});