We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ae7c91 commit d198a22Copy full SHA for d198a22
test/compose.spec.js
@@ -41,7 +41,7 @@ describe('Utils', () => {
41
it('returns the first given argument if given no functions', () => {
42
expect(compose()(1, 2)).toBe(1)
43
expect(compose()(3)).toBe(3)
44
- expect(compose(false,4,"test")(3)).toBe(3)
+ expect(compose(false,4,'test')(3)).toBe(3)
45
expect(compose()()).toBe(undefined)
46
})
47
0 commit comments