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