This commit is contained in:
Felix Roos 2023-03-03 12:38:11 +01:00
parent a50bd6375d
commit 9a4d8036a6

View File

@ -30,4 +30,11 @@ describe('tonal', () => {
.firstCycleValues.map((h) => h.note),
).toEqual(['C3', 'D3', 'E3']);
});
it('scale with colon', () => {
expect(
n(0, 1, 2)
.scale('C:major')
.firstCycleValues.map((h) => h.note),
).toEqual(['C3', 'D3', 'E3']);
});
});