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