it('#gen-diff YAML -> structure', () => {
    const actual = genDiff(path1yml, path2yml, 'structure');
    const expectedFixturePath = path.join(__dirname, '__fixtures__', 'expected_structure');
    const expected = fs.readFileSync(expectedFixturePath, 'utf-8');
    expect(actual).toEqual(expected);