test('Plain output format of compare of YAML recursive format differences', () => {
  const path1 = './__tests__/samplefiles/before-recur.yml';
  const path2 = './__tests__/samplefiles/after-recur.yml';
  expect(genDiff(path1, path2, 'plain')).toBe(plainExpected);
});