ngrx / store-测试,抛出TypeError:无法读取未定义的属性“ pipe”

时间:2019-09-30 06:48:18

标签: angular typescript ngrx angular8 angular-unit-test

这是我的ts文件:

this.store.pipe(select(subscribe.getRegCategories)).pipe(takeUntil(this.ngUnsubscribe)).subscribe(data => {
            if (data && data.length) {
                this.allRegCategories = data;
            }
        });

当我去测试时遇到如下错误:

this.store.pipe(select(subscribe.getRegCategories)).pipe(takeUntil(this.ngUnsubscribe)).subscribe(data => {

TypeError: Cannot read property 'pipe' of undefined

如何在此处提供管道?解决这个问题的正确方法是什么?

这是我的测试规格文件:

import { async, ComponentFixture, TestBed } from '@angular/core/testing';
import { Store, select } from '@ngrx/store';
import { RouterTestingModule } from '@angular/router/testing';
import { HttpClientModule } from '@angular/common/http';
import { ShellViewProgMgmtComponent } from './shell-view-prog-mgmt.component';
import { ViewProgMgmtComponent } from './../../components/view-prog-mgmt/view-prog-mgmt.component';
import * as actions from './../../state/actions/setup-config.actions';

describe('ShellViewProgMgmtComponent', () => {
    let component: ShellViewProgMgmtComponent;
    let fixture: ComponentFixture<ShellViewProgMgmtComponent>;

    beforeEach(async(() => {
        TestBed.configureTestingModule({
            declarations: [ShellViewProgMgmtComponent, ViewProgMgmtComponent],
            imports: [HttpClientModule, RouterTestingModule],
            providers: [
            {
                provide: Store,
                useValue: {
                    dispatch: jest.fn(),
                    pipe: jest.fn()
                }
            }
            ]
        })
        .compileComponents();
    }));

    beforeEach(() => {
        fixture = TestBed.createComponent(ShellViewProgMgmtComponent);
        component = fixture.componentInstance;
        fixture.detectChanges();
    });

    it('should create', () => {
        expect(component).toBeTruthy();
    });

    describe('ngOnInit()', () => {

        it('should dispatch an event resetEditPage action in ngOnit lifecycle', () => {

            const store = TestBed.get(Store);
            const action = actions.resetEditPage();
            const spy = jest.spyOn(store, 'dispatch');

            fixture.detectChanges();
            expect(spy).toHaveBeenCalledWith(action);

        });

    });
});

1 个答案:

答案 0 :(得分:2)

请不要嘲笑自己的商店。

请改为使用MockStore和/或模拟选择器,因为它将使您的生活更轻松。 如果需要的话,您可以看一下实现,以了解如何创建模拟存储。

https://ngrx.io/guide/store/testing