Testing flux stores with mocha, chai and sinon
问题 I'm trying to test Flux stores with Mocha, Chai and Sinon. I've been searching for examples but couldn't find enough information to make my tests work. I've tried many things but I'm quite blocked. This is what I have now. Source MyStore.js var AppDispatcher = require('../dispatcher/AppDispatcher'); var EventEmitter = require('events').EventEmitter; var MyStoreConstants = require('../constants/MyConstants'); var assign = require('object-assign'); var CHANGE_EVENT = 'change'; var _results = []