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 77e01a0 commit 3501c40Copy full SHA for 3501c40
src/test/clojure/cljs/module_processing_tests.clj
@@ -60,7 +60,7 @@
60
:module-type :commonjs}]})
61
compile (fn [form] (with-out-str
62
(comp/emit (ana/analyze (ana/empty-env) form))))
63
- output "module$src$test$cljs$calculator.add.call(null,(3),(4));\n"]
+ output "module$src$test$cljs$calculator.add((3),(4));\n"]
64
(swap! cenv
65
#(assoc % :js-dependency-index (deps/js-dependency-index opts)))
66
(binding [ana/*cljs-ns* 'cljs.user]
@@ -70,4 +70,4 @@
70
(is (= (compile '(calculator/add 3 4)) output))
71
(is (= (compile '(add 3 4)) output))
72
(is (= (compile '(sub 5 4))
73
- "module$src$test$cljs$calculator.subtract.call(null,(5),(4));\n")))))))
+ "module$src$test$cljs$calculator.subtract((5),(4));\n")))))))
0 commit comments