We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc0ebad commit fea514fCopy full SHA for fea514f
src/test/cljs/cljs/lite_collections_test.cljs
@@ -7,11 +7,13 @@
7
; You must not remove this notice, or any other, from this software.
8
9
(ns cljs.lite-collections-test
10
- (:require [cljs.test :refer-macros [deftest testing is are run-tests]]))
+ (:require [cljs.test :refer [deftest testing is]]))
11
12
-;; NOTE: ** this name space must be tested with :lite-mode true **
+;; NOTE: ** this namespace must be tested with :lite-mode true **
13
14
(deftest test-obj-map
15
(let [a (. ObjMap -EMPTY)
16
b {}]
17
- (is (identical? a b))))
+ (is (identical? a b)))
18
+ (let [a {:foo 1}]
19
+ (is (== 1 (:foo a)))))
0 commit comments