Exemple #1
0
	it('Should get pitch with ignore octave', () => {
		const note = new Note(8, 2);
		expect(note.pitch(true)).toBe(1);
	});
Exemple #2
0
	it('Should get pitch', () => {
		const note = new Note(8, 2);
		expect(note.pitch()).toBe(8);
	});