Socket
Socket
Sign inDemoInstall

ngrx-selector-fake

Package Overview
Dependencies
5
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ngrx-selector-fake

For tests where we don't want to mock/stub/spy the whole selector, only a select few dependent selectors that are not relevant for the test case/suite.


Version published
Weekly downloads
1
Maintainers
1
Install size
1.07 MB
Created
Weekly downloads
 

Readme

Source

ngrx-selector-fake

For tests where we don't want to mock/stub/spy the whole selector, only a select few dependent selectors that are not relevant for the test case/suite.

Installation

npm i --save ngrx-selector-fake

Usage

We were aiming at creating a similar experience to Jest/Jasmine Spys.

fakeSelector(object, selectorName)

Creates fake object, returns a SelectorFake. Example:

export interface State {
    flag: boolean;
    value: number;
}

export namespace FeatureStateSelectors {
    export const selectFlag = (state: State) => state.flag;

    export const selectValue = (state: State) => state.value;

    export const memoizedCalculatorSelector = createSelector(selectValue, (val: number): number => {
        return val * 2;
    });

    export const memoizedComplexSelector = createSelector(
        selectFlag,
        memoizedCalculatorSelector,
        (flag: boolean, calculated: number) => flag ? calculated : 0
    );
}

Test example:

describe("when the subselectors are partially faked", () => {
        beforeEach(() => {
            fakeSelector(FeatureStateSelectors, "memoizedComplexSelector").and.useSelectors(
                () => true, // stubbing the first dependent selector
                FeatureStateSelectors.memoizedCalculatorSelector, // using the original for the second dependent
            );
        });
        it("should get the state as faked, and calculate with that", (done) => {
            store.select(FeatureStateSelectors.memoizedComplexSelector).subscribe((val) => {
                expect(val).toBe(2);
                done();
            });
        });
    });

See more exapmles in tests

Keywords

FAQs

Last updated on 19 Jul 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc