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


TypeScript IStore.dispatch方法代碼示例

本文整理匯總了TypeScript中redux-mock-store.IStore.dispatch方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript IStore.dispatch方法的具體用法?TypeScript IStore.dispatch怎麽用?TypeScript IStore.dispatch使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在redux-mock-store.IStore的用法示例。


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

示例1: it

    it('should dispatch the a fetched trainingTOC', sinon.test(function(done) {
      // Arrange
      const sinon: sinon.SinonStatic = this;
      const trainingId = '123';
      const mockedTOC = 'Markdown content';
      const getTOCByTraining = sinon.stub(studentAPI, 'getTOCByTraining', () => {
        return Promise.resolve(mockedTOC);
      });

      // Act
      store.dispatch(fetchTrainingTOCStarted(trainingId)).then(() => {
        expect(getTOCByTraining.calledWith(trainingId)).to.be.true;
        const actions = store.getActions();
        expect(actions).to.be.an('array').with.lengthOf(1);
        expect(actions[0].payload).to.be.equals(mockedTOC);
        expect(actions[0].type).to.be.equals(studentActionEnums.FETCH_TRAINING_TOC_COMPLETED);
        done();
      }).catch(done);
    }));
開發者ID:MasterLemon2016,項目名稱:LeanMood,代碼行數:19,代碼來源:fetchTrainingToc.spec.ts

示例2: loggingMiddleware

    }
}

function loggingMiddleware() {
    return (next: Redux.Dispatch<any>) => (action: any) => {
        console.log(action.type);
        next(action);
    };
}

const storeMock = configureStore<number>([loggingMiddleware]);
const initialState = 0
let store: IStore<number>;

store = storeMock(initialState);

store.subscribe(() => {
    // ...
});

store.dispatch({ type: 'INCREMENT' });


// Additional mock store API tests
var actions: Array<any> = store.getActions();

store.clearActions();

// actions access without the need to cast
var actions2 = store.getActions();
actions2[10].payload.id;
開發者ID:ArtemZag,項目名稱:DefinitelyTyped,代碼行數:31,代碼來源:redux-mock-store-tests.ts


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