test('Converting a drop 2 chord to drop 2 returns same chord', () => {
    const chord = new ClosedChord(Pitch.C, ChordPattern.Major7, Duration.Quarter, Octave.C4);
    const drop = chord.drop2();
    const other = drop.drop2();