We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd113c6 commit 328b4bfCopy full SHA for 328b4bf
src/test/cljs/cljs/var_test.cljs
@@ -7,7 +7,7 @@
7
;; You must not remove this notice, or any other, from this software.
8
9
(ns cljs.var-test
10
- (:require [cljs.test :refer-macros [deftest is]]))
+ (:require [cljs.test :refer-macros [deftest is testing]]))
11
12
(defn cljs-3411-function
13
"this function adds two numbers"
@@ -18,6 +18,5 @@
18
19
(deftest cljs-3411
20
(testing "cljs.core/test respects docstring"
21
- (is (= :ok (test cljs-3411)))
22
- ;(is (= :ok (test #'cljs-3411)))
23
- ))
+ (is (= :ok (test cljs-3411-function)))
+ (is (= :ok (test #'cljs-3411-function)))))
0 commit comments