Merge pull request #2254 from jgable/spellingFix

Spelling fix for "Testing Flux Applications"
This commit is contained in:
Paul O’Shannessy
2014-09-26 23:11:42 -07:00
parent e179f7b19e
commit c8d5106387
@@ -83,7 +83,7 @@ var keys = Object.keys(all);
expect(all[keys[0]].text).toEqual('foo');
```
Puting it All Together
Putting it All Together
----------------------
The example Flux TodoMVC application has been updated with an example test for the TodoStore, but lets's look at an abbreviated version of the entire test. The most important things to notice in this test are how we keep a reference to the store's registered callback in the closure of the test, and how we recreate the store before every test so that we clear the state of the store entirely.