test('be named after the root note and the abbreviated quality', () => {
    const name = new ClosedChord(Pitch.C, ChordPattern.Diminished7, Duration.Quarter, Octave.C4)
      .Abbreviation;
    expect(name).toBe('Cdim7');
  });