fix test
This commit is contained in:
parent
74e27ca94f
commit
4cc453c640
2 changed files with 3 additions and 3 deletions
|
|
@ -152,8 +152,8 @@ export const itri2 = fastcat(isaw2, saw2);
|
||||||
*
|
*
|
||||||
* @return {Pattern}
|
* @return {Pattern}
|
||||||
*/
|
*/
|
||||||
export const time = signal(x => {
|
export const time = signal((x) => {
|
||||||
return x.valueOf()
|
return x.valueOf();
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -877,7 +877,7 @@ describe('Pattern', () => {
|
||||||
.squeezeJoin()
|
.squeezeJoin()
|
||||||
.queryArc(3, 4)
|
.queryArc(3, 4)
|
||||||
.map((x) => x.value),
|
.map((x) => x.value),
|
||||||
).toStrictEqual([Fraction(3)]);
|
).toStrictEqual([3]);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
describe('ply', () => {
|
describe('ply', () => {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue