當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript store.ofActionDispatched函數代碼示例

本文整理匯總了TypeScript中@ngxs/store.ofActionDispatched函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript ofActionDispatched函數的具體用法?TypeScript ofActionDispatched怎麽用?TypeScript ofActionDispatched使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了ofActionDispatched函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: it

    it('should dispatch UnauthorizedAccessAction when credentials lack the authority to execute an action (403)', () => {
        const errorResponse = new HttpErrorResponse({
            status: 403,
            error: {
                error: 'unauthorized'
            },
            statusText: '403 Unauthorized'
        });

        const route = '/api/error403';
        client.get(route).subscribe(
            (response) => {
                expect(response).toBeFalsy();
            },
            (error) => {
                expect(error).toBeTruthy();
                expect(error.error).toBe('unauthorized');
            }
        );

        actions.pipe(ofActionDispatched(UnauthorizedAccessAction)).subscribe((payload: any) => {
            expect(payload).toBeTruthy();
            expect(payload instanceof UnauthorizedAccessAction).toBe(true);
        });

        backend.expectOne(route).flush({}, errorResponse);

        expect(toastrSpy).toHaveBeenCalledTimes(0);
    });
開發者ID:strongbox,項目名稱:strongbox-web-ui,代碼行數:29,代碼來源:error.interceptor.spec.ts

示例2: it

  it('should dispatch HmrBeforeDestroyAction with custom state if present', fakeAsync(async () => {
    // Arrange
    let hmrSnapshot: NgxsHmrSnapshot = {};
    const { actions$, webpackModule } = await hmrTestBed(AppMockModule, {
      storedValue: { status: 'working' }
    });

    tick(2000);

    actions$
      .pipe(ofActionDispatched(HmrBeforeDestroyAction))
      .subscribe(({ payload }) => (hmrSnapshot = payload));

    // Act
    await webpackModule.destroyModule();
    tick(1000);

    // Assert
    expect(hmrSnapshot).toEqual({
      mock_state: { value: 'test' },
      status: 'working',
      customOut: 'abc',
      custom: 123
    });
  }));
開發者ID:LucasFrecia,項目名稱:store,代碼行數:25,代碼來源:hmr-manager.spec.ts


注:本文中的@ngxs/store.ofActionDispatched函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。