mix strudel location

This commit is contained in:
alex 2022-01-27 20:33:15 +00:00
parent d911e1f51a
commit e31fa95c23

View File

@ -2,7 +2,7 @@ import Fraction from 'fraction.js'
import { strict as assert } from 'assert';
import {TimeSpan, Hap, Pattern, pure, stack, fastcat, slowcat, cat, sequence} from "../js/strudel.mjs";
import {TimeSpan, Hap, Pattern, pure, stack, fastcat, slowcat, cat, sequence} from "../strudel.mjs";
describe('TimeSpan', function() {
describe('equals()', function() {
@ -125,4 +125,4 @@ describe('Pattern', function() {
assert.deepStrictEqual(sequence(1,2,3).firstCycle, fastcat([pure(1), pure(2), pure(3)]).firstCycle)
})
})
})
})