File tree 3 files changed +5
-6
lines changed
3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 3
3
:url " http://example.com/FIXME"
4
4
5
5
:dependencies [[org.clojure/clojure " 1.6.0" ]
6
- [org.clojure/clojurescript " 0.0-2202 " ]
6
+ [org.clojure/clojurescript " 0.0-2268 " ]
7
7
[org.clojure/core.async " 0.1.303.0-886421-alpha" ]
8
8
[tailrecursion/cljs-priority-map " 1.1.0" ]
9
- [om " 0.6.4 " ]]
9
+ [om " 0.6.5 " ]]
10
10
11
11
:plugins [[lein-cljsbuild " 1.0.3" ]
12
12
[com.cemerick/clojurescript.test " 0.3.1" ]]
29
29
:externs [" externs/react.js" " externs/misc.js" ]}}
30
30
{:id " test"
31
31
:source-paths [" src" " test" ]
32
+ :notify-command [" phantomjs" :cljs.test/runner " js/moment.min.js" " test-out/cljs_om.js" ]
32
33
:compiler {:output-to " test-out/cljs_om.js"
33
34
:output-dir " test-out/"
34
35
:optimizations :simple
35
36
:externs [" externs/react.js" " externs/misc.js" ]}}]
36
37
37
38
:test-commands {" unit-tests" [" phantomjs" :runner
38
- ; "js/react.min.js"
39
+ " js/react.min.js"
39
40
" js/moment.min.js"
40
- " this.literal_js_was_evaluated=true"
41
41
" test-out/cljs_om.js" ]}})
Original file line number Diff line number Diff line change 39
39
(def prev-tweets-chan (chan 10000 ))
40
40
41
41
(go-loop []
42
- (let [[t chan] (alts! [tweets-chan prev-tweets-chan] :priority true )]
42
+ (let [[t chan] (alts! [tweets-chan prev-tweets-chan] :priority )]
43
43
(tweets/add-tweet t app-state word-cloud)
44
44
(recur )))
45
45
Original file line number Diff line number Diff line change 15
15
" test that"
16
16
(is (= (util/from-now (new js/Date)) " just now" )))
17
17
18
-
You can’t perform that action at this time.
0 commit comments