describe('Pipe', () => {
  it('should compose all functions from left to right', () => {
    const f1 = x => `${x}:1`
    const f2 = x => `${x}:2`
    const f3 = x => `${x}:3`