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

    const expectedPitches = [Pitch.E, Pitch.G, Pitch.C];
    expect(Array.from(chord.invert())).toStrictEqual(expectedPitches);