test("takes a plugin id and returns its unbound action creators", () => {
            const ac = registry.getActionCreators(pluginId, "unbound");
            const oldState = store.getState();
            ac.ACTION1(23);
            const nextState = store.getState();