diff --git a/src/test/clojure/cljs/analyzer/glib_module_test.clj b/src/test/clojure/cljs/analyzer/glib_module_test.clj index ad4d126ea..04c2781d3 100644 --- a/src/test/clojure/cljs/analyzer/glib_module_test.clj +++ b/src/test/clojure/cljs/analyzer/glib_module_test.clj @@ -49,8 +49,8 @@ '[(ns foo.core (:import [goog.module ModuleLoader]))]) aenv (assoc (ana/empty-env) :ns (ana/get-namespace cenv 'foo.core))] - (is (= '{:name foo.core.goog$module$goog$module$ModuleLoader - :ns goog.module ;; a bit odd, but doesn't matter, for emission we just :name + (is (= '{:name foo.core/goog$module$goog$module$ModuleLoader + :ns foo.core :op :var} (env/with-compiler-env cenv (ana/resolve-var aenv 'ModuleLoader))))))) diff --git a/src/test/clojure/cljs/test_runner.clj b/src/test/clojure/cljs/test_runner.clj index 5a8799cb1..12836b3d8 100644 --- a/src/test/clojure/cljs/test_runner.clj +++ b/src/test/clojure/cljs/test_runner.clj @@ -1,15 +1,19 @@ (ns cljs.test-runner (:require [cljs.analyzer-api-tests] + [cljs.analyzer-pass-tests] [cljs.analyzer-tests] [cljs.build-api-tests] [cljs.closure-tests] [cljs.compiler-tests] + [cljs.compiler.glib-module-test] [cljs.externs-infer-tests] [cljs.externs-parsing-tests] [cljs.instant-tests] + [cljs.js-deps-tests] [cljs.module-graph-tests] [cljs.module-processing-tests] [cljs.source-map.base64-tests] + [cljs.transpile-tests] [cljs.type-inference-tests] [cljs.util-tests] [clojure.test :refer [run-tests]])) @@ -18,16 +22,20 @@ (let [{:keys [fail error]} (run-tests 'cljs.analyzer-api-tests + 'cljs.analyzer-pass-tests 'cljs.analyzer-tests 'cljs.build-api-tests 'cljs.closure-tests 'cljs.compiler-tests + 'cljs.compiler.glib-module-test 'cljs.externs-infer-tests 'cljs.externs-parsing-tests 'cljs.instant-tests + 'cljs.js-deps-tests 'cljs.module-graph-tests 'cljs.module-processing-tests 'cljs.source-map.base64-tests + 'cljs.transpile-tests 'cljs.type-inference-tests 'cljs.util-tests)] (if (or (not (zero? fail))