mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-13 06:19:33 -04:00
10 lines
334 B
JavaScript
10 lines
334 B
JavaScript
import { strict as assert } from 'assert';
|
|
import '../tonal.mjs'; // need to import this to add prototypes
|
|
import { pure } from '@strudel.cycles/core';
|
|
|
|
describe('tonal', () => {
|
|
it('Should run tonal functions ', () => {
|
|
assert.deepStrictEqual(pure('c3').scale('C major').scaleTranspose(1)._firstCycleValues, ['D3']);
|
|
});
|
|
});
|