Typos on envelope values
This commit is contained in:
parent
c13a726129
commit
ac7e9c6978
3 changed files with 16 additions and 16 deletions
|
|
@ -796,7 +796,7 @@ describe('Pattern', () => {
|
|||
});
|
||||
});
|
||||
describe('apply', () => {
|
||||
(it('Can apply a function', () => {
|
||||
it('Can apply a function', () => {
|
||||
expect(sequence('a', 'b').apply(fast(2)).firstCycle()).toStrictEqual(sequence('a', 'b').fast(2).firstCycle());
|
||||
}),
|
||||
it('Can apply a pattern of functions', () => {
|
||||
|
|
@ -804,7 +804,7 @@ describe('Pattern', () => {
|
|||
expect(sequence('a', 'b').apply(fast(2), fast(3)).firstCycle()).toStrictEqual(
|
||||
sequence('a', 'b').fast(2, 3).firstCycle(),
|
||||
);
|
||||
}));
|
||||
});
|
||||
});
|
||||
describe('layer', () => {
|
||||
it('Can layer up multiple functions', () => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue