You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Estou "brincando" com a lib e em uma dessa brincadeiras reparei que o teste da função flatMap pode estar falho, pois quando realizo o teste ele me retorna:
Uncaught TypeError: fn(...) is not a function or its return value is not iterable
Ou seja, a função inc() (referente ao primeiro teste), não retorna um valor iterável consequentemente o teste sempre irá falhar, porém quando colocamos esse retorno em um iterável (array) os testes passam.
Na função temos um spread operator e como sabemos ele funciona em arrays e objetos, e as funções testadas não retornavam isso.
Estou "brincando" com a lib e em uma dessa brincadeiras reparei que o teste da função flatMap pode estar falho, pois quando realizo o teste ele me retorna:
Uncaught TypeError: fn(...) is not a function or its return value is not iterable
Ou seja, a função
inc()
(referente ao primeiro teste), não retorna um valor iterável consequentemente o teste sempre irá falhar, porém quando colocamos esse retorno em um iterável (array) os testes passam.Na função temos um spread operator e como sabemos ele funciona em arrays e objetos, e as funções testadas não retornavam isso.
The text was updated successfully, but these errors were encountered: