Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Using beforeEach/beforeAll #14

Open
Draeggiar opened this issue Mar 12, 2020 · 0 comments
Open

Using beforeEach/beforeAll #14

Draeggiar opened this issue Mar 12, 2020 · 0 comments

Comments

@Draeggiar
Copy link

I wanted to setup some mocks before actual test cases, but it seems that beforeEach/beforeAll methods are not called at all.
Here's sample of my code:

    describe('elementInfoLoad', () => {

        let authenticatedFetchMock;
        let formSaga;
        beforeEach(() => {
            authenticatedFetchMock = {
                authenticatedFetchAsync: () => {},
            };
            formSaga = formSagaInjector({
                '../../Utils/authenticatedFetch': authenticatedFetchMock,
            });
        })

        describe('should load element data for lite', () => {
            const it = sagaHelper(formSaga.elementInfoLoad());

            it('should dispatch `formElementInfoLoading` action', result => {
                expect(result).toEqual(put(formElementInfoLoading()));
            });

        });
    });

In this case formSaga will always be undefined. It works fine without beforeEach, although it is kinda messy.
Is it possible to do it this way, or am i missing something ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant