本文整理匯總了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);
});
示例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
});
}));