mirror of
https://codeberg.org/uzu/strudel
synced 2026-07-13 14:26:58 -04:00
fix test
This commit is contained in:
@@ -152,8 +152,8 @@ export const itri2 = fastcat(isaw2, saw2);
|
||||
*
|
||||
* @return {Pattern}
|
||||
*/
|
||||
export const time = signal(x => {
|
||||
return x.valueOf()
|
||||
export const time = signal((x) => {
|
||||
return x.valueOf();
|
||||
});
|
||||
|
||||
/**
|
||||
|
||||
@@ -877,7 +877,7 @@ describe('Pattern', () => {
|
||||
.squeezeJoin()
|
||||
.queryArc(3, 4)
|
||||
.map((x) => x.value),
|
||||
).toStrictEqual([Fraction(3)]);
|
||||
).toStrictEqual([3]);
|
||||
});
|
||||
});
|
||||
describe('ply', () => {
|
||||
|
||||
Reference in New Issue
Block a user