根据有关Vuex的答案,我做到了,该方法有效:
// after createStore(...)if (window.Cypress) { window.__store__ = store;}// in cypress testscy.window().should('have.property', '__store__');cy.window().its('__store__') .then( store => store.dispatch({ type: 'UPDATE_CURRENT_PROFILE' }) );
cy.visit('anyRoute')在对存储执行任何 *** 作之前,请不要忘记这样做,以便在您尝试访问它时启动React应用并且已经创建了redux存储。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)