[jest] "toEqual" timeouts with observe
See original GitHub issuerxjs-marbles revision: a7ae5dc node: v9.5.0 rxjs: 6.2.0
copy&paste snippet below into ./examples/jest/observe-spec.ts
it(
"should property reduce `localState`",
observe(() => {
// would be passed as param
const userState$ = of({
userName: "jdoe",
lastLogin: "1231241241"
});
const logout$ = never();
const login$ = never();
const actionsWithUser$ = merge(
merge(logout$, login$),
userState$.pipe(
map(userState => localState => ({
...localState,
user: userState
}))
)
);
const result$ = actionsWithUser$.pipe(
startWith({ user: undefined, someOtherProp: "foo" }),
scan((state, reduce) => reduce(state))
);
return result$.pipe(
skip(1),
tap(val =>
expect(val).toEqual({
someOtherProp: "foo",
user: { lastLogin: "1231241241", userName: "jdoe" }
})
)
);
})
);
when used with toBe
there is an proper failure because Object.is
equality check
when I use expect(val).toEqual
the test timeouts… Timeout - Async callback was not invoked within the 5000ms timeout specified by jest.setTimeout.
EDIT: it also might be related to the skip()
call but with scalar state - only number this test works
Issue Analytics
- State:
- Created 5 years ago
- Comments:12 (6 by maintainers)
Top Results From Across the Web
Message "Async callback was not invoked within the 5000 ms ...
Sometimes, when I run the tests, everything works as expectedly. Other times, I get an error: Timeout - Async callback was not invoked...
Read more >How I divided by ten the execution time of my jest unit testing
Once upon a time, there was a team spending 40 seconds to run their unit tests in local. Exhausted by so much time...
Read more >Expect - Jest
When you're writing tests, you often need to check that values meet certain conditions. expect gives you access to a number of "matchers" ......
Read more >Testing RxJS Observables With Jest - Fireship
Learn how to write unit testing RxJS Observables using Jest. ... force completion, like takeWhile, otherwise Jest will timeout after 5000ms.
Read more >Features - Vitest
Filtering, timeouts, concurrent for suite and tests ... vitest starts in watch mode by default in development environment and run mode in CI ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The thing to remember with marble tests is that for the virtual scheduling to work, the root sources have to be observables that were created by the
TestScheduler
. That is, they have to be created by calling eitherm.hot
orm.cold
.Your test doesn’t work because the subject is not such an observable, so the
TestScheduler
simply doesn’t know what to do with it - when it comes to virtual scheduling. That is, the call tonext
won’t fit within theTestScheduler
’s concept of virtual time because you’ve called it imperatively - in real time - within the test.The solution is to use another source to either trigger or map to the subject. See the
ReplaySubject
tests for an example of the latter. For the former, you could do something like this:It’s likely possible to also achieve this with explicit calls to
flush
, but I think a declarative approach that lets theTestScheduler
do its thing with virtual time is the best way to go.Also, using
m.cold
to create the expected observable is just a convenience. Something that I pinched fromjasmine-marbles
. I find it useful because it lets you specify the expected observable and values alongside the sources. Usually, thetoBeObservable
takes a marble diagram string and an optional map of values, but calling it that way means that the values are specified separately to the marble diagram (as the marble diagrams are best declared one-after-the-other and aligned).It should be pretty easy to test that with a marble test. Something like this should do it:
I would recommend attempting to test with a marble test and resort to
observe
only if writing a marble test proves to be too complicated.