File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 3030 com.cognitect/transit-clj {:mvn/version " 1.0.324" }
3131 com.cognitect/transit-cljs {:mvn/version " 0.8.269" }}}
3232
33+ :shadow-cljs
34+ {:extra-deps {thheller/shadow-cljs {:mvn/version " 2.19.0" }}
35+ :main-opts [" -m" " shadow.cljs.devtools.cli" ]}
36+
3337 :bench
3438 {:extra-paths [" bench" ]
3539 :jvm-opts [" -server"
Original file line number Diff line number Diff line change 280280
281281 ; ; overflow keeps working on restored conn
282282 (d/transact! conn' (mapv #(vector :db/add % :name (str %)) (range 36 80 )))
283- ; ; (is (= 28 (count @(:*writes storage))))
284- ; ; FIXME: clj version is 28
285- (is (= 29 (count @(:*writes storage))))
283+ (is (= 28 (count @(:*writes storage))))
286284 (is (= @#'storage/tail-addr (last @(:*writes storage))))
287285
288286 ; ; restore conn without tail
289287 (let [conn'' (d/restore-conn storage)]
290288 (is (= @conn' @conn''))
291289
292290 (d/transact! conn'' [[:db/add 80 :name " Ilya" ]])
293- (is (= 30 (count @(:*writes storage))))
291+ (is (= 29 (count @(:*writes storage))))
294292 (is (= @#'storage/tail-addr (last @(:*writes storage))))
295293
296294 ; ; gc on conn
You can’t perform that action at this time.
0 commit comments