Skip to main content
Module

x/rambda/partialCurry.spec.js

Faster and smaller alternative to Ramda
Go to Latest
File
import { delay } from './delay'import { partialCurry } from './partialCurry'import { type } from './type'
test('with plain function', () => { const fn = ({ a, b, c }) => a + b + c const curried = partialCurry(fn, { a : 1 })
expect(type(curried)).toEqual('Function') expect(curried({ b : 2, c : 3, })).toEqual(6)})
test('with function that throws an error', () => { const fn = ({ a, b, c }) => { throw new Error('foo') } const curried = partialCurry(fn, { a : 1 })
expect(type(curried)).toEqual('Function') expect(() => curried({ b : 2, c : 3, })).toThrowWithMessage(Error, 'foo')})
test('with async', async () => { const fn = async ({ a, b, c }) => { await delay(100)
return a + b + c }
const curried = partialCurry(fn, { a : 1 })
const result = await curried({ b : 2, c : 3, })
expect(result).toEqual(6)})
test('async function throwing an error', async () => { const fn = async ({ a, b, c }) => { await delay(100) throw new Error('foo') }
const curried = partialCurry(fn, { a : 1 })
try { await curried({ b : 2, c : 3, }) expect(true).toBeFalsy() } catch (e){ expect(e.message).toBe('foo') }})