martijnversluis/ChordSheetJS

View on GitHub
test/chord_solfege/is_numeral.test.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Chord } from '../../src';

describe('Chord', () => {
  describe('chord solfege', () => {
    describe('isNumeral', () => {
      describe('for a chord solfege', () => {
        it('returns false', () => {
          expect(Chord.parse('Do/Mi')?.isNumeral()).toBe(false);
        });
      });
    });
  });
});