From c8d5106387cb19c88f7df56fae5e2d3719358266 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20O=E2=80=99Shannessy?= Date: Fri, 26 Sep 2014 23:11:42 -0700 Subject: [PATCH] Merge pull request #2254 from jgable/spellingFix Spelling fix for "Testing Flux Applications" --- docs/_posts/2014-09-24-testing-flux-applications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_posts/2014-09-24-testing-flux-applications.md b/docs/_posts/2014-09-24-testing-flux-applications.md index 34fb5b5981..092ae9dc46 100644 --- a/docs/_posts/2014-09-24-testing-flux-applications.md +++ b/docs/_posts/2014-09-24-testing-flux-applications.md @@ -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.