Skip to content
This repository was archived by the owner on Feb 19, 2022. It is now read-only.
This repository was archived by the owner on Feb 19, 2022. It is now read-only.

middleware not executing in Jest #101

@bingomanatee

Description

@bingomanatee

I have middleware that preserves values into local storage; it does not appear to fire up when events are called in a jest test.

   middleware: [
          (context) => { // save select values into session
            console.log(' >>>>> middleware: context', context);
            if (sessionStorage && context.state) {
              for (let def of LOAD_STATES) {
                putInSession(def.name, context.state[def.name] || null, def.type);
              }
            }
            return context;
          }
        ]

and in the test:

it('should set palette to a value', async () => {
        expect.assertions(2);

        await effects.choosePalette('black');
        await Promise.resolve();
        let state = getState();
        expect(state.palette).toEqual('black');
        console.log('mock store', mockStore); // an object my storageState uses to catch results of a mock local storage)
        expect(mockStore.palette).toEqual('black');
      });

this console.log(' >>>>> middleware: context', context); is not being called.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions