test('be able to be inverted to first inversion when in drop3 format', () => {
    const chord = new ClosedChord(Pitch.C, ChordPattern.Major7, Duration.Quarter, Octave.C4);

    const expectedPitches = [Pitch.E, Pitch.C, Pitch.G, Pitch.B];
    expect(Array.from(chord.drop3().invert()).map((p) => p.Name)).toStrictEqual(