You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the Closure rules the @define vars (via goog-define) must be treated as constants and cannot be updated dynamically. Not sure this check has always been there but it currently prevents using cljs-test-display in :advanced builds. Works fine in :none but something it'd nice to run the tests against :advanced compiled code.
The text was updated successfully, but these errors were encountered:
There is a dynamic
set!
for agoog-define
which makes the Closure compiler error out when compilingcljs-test-display
in:advanced
mode.It errors out with
which is this line
cljs-test-display/src/cljs_test_display/core.cljs
Line 411 in be674b3
According to the Closure rules the
@define
vars (viagoog-define
) must be treated as constants and cannot be updated dynamically. Not sure this check has always been there but it currently prevents usingcljs-test-display
in:advanced
builds. Works fine in:none
but something it'd nice to run the tests against:advanced
compiled code.The text was updated successfully, but these errors were encountered: