Skip to content

Commit 7b901e4

Browse files
author
Bruce Hauman
committed
Merge pull request bhauman#55 from ricardojmendez/develop
Bumping dependencies, minor test label changes
2 parents 83e855b + f9f5bb2 commit 7b901e4

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

example_src/devdemos/testing.cljs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,16 +143,16 @@ All the tests after that exception will not be run.
143143
"## This is an async test
144144
You should see some tests here"
145145

146-
(t/testing "yepo"
146+
(t/testing "Let's run async tests!"
147147
(is (= (+ 3 4 55555) 4) "Testing the adding")
148-
(is (= (+ 1 0 0 0) 1) "This shouldn't work")
148+
(is (= (+ 1 0 0 0) 1) "This should work")
149149
(is (= 1 3))
150150
(is true)
151151
(async done
152152
(go
153153
(<! (timeout 100))
154154
(is (= (+ 3 4 55555) 4) "Testing the adding")
155-
(is (= (+ 1 0 0 0) 1) "This shouldn't work")
155+
(is (= (+ 1 0 0 0) 1) "This should work")
156156
(is (throw "heck")) ;; all the tests from here down
157157
;; will not be rendered
158158
(is (= 1 3))

project.clj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject devcards "0.2.0-3"
1+
(defproject devcards "0.2.0-4"
22
:description "Devcards is a ClojureScript library that provides a lab space to you develop your UI components independently and interactively."
33
:url "http://github.com/bhauman/devcards"
44
:license {:name "Eclipse Public License"
@@ -8,7 +8,7 @@
88
[org.clojure/clojurescript "1.7.122"]
99
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
1010
[sablono "0.3.6"]
11-
[cljsjs/react "0.13.1-0"]
11+
[cljsjs/react "0.13.3-1"]
1212
[cljs-react-reload "0.1.1"]
1313
[cljsjs/showdown "0.4.0-1"]]
1414

@@ -22,8 +22,8 @@
2222

2323
:profiles {
2424
:dev {
25-
:dependencies [[org.omcljs/om "0.8.8"]
26-
[reagent "0.5.0"]]
25+
:dependencies [[org.omcljs/om "0.9.0"]
26+
[reagent "0.5.1"]]
2727
:plugins [#_[lein-cljsbuild "1.0.5"]
2828
[lein-figwheel "0.4.0"]]
2929
:resource-paths ["resources" "example-resources"]

0 commit comments

Comments
 (0)