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
We recently merged #17762, but we missed the fact that the integration tests are not running anymore.
In shadow-cljs, the regular expression looking for test namespaces expect them to end with -test$ by default, but the code we merged don't respect this convention.
Notes
We should probably allow each integration test namespace to run in isolation, thus status_im2/integration_test/core.cljs should not require other integration test namespaces.
The text was updated successfully, but these errors were encountered:
Integration tests weren't running since #17762 was merged a week ago.
This commit also allows individual integration test namespaces to run if you change the :ns-regexp option in shadow-cljs. This is quite handy, since they are relatively slow.
Fixes#17895
Integration tests weren't running since #17762 was merged a week ago.
This commit also allows individual integration test namespaces to run if you change the :ns-regexp option in shadow-cljs. This is quite handy, since they are relatively slow.
Fixes#17895
Problem
We recently merged #17762, but we missed the fact that the integration tests are not running anymore.
In shadow-cljs, the regular expression looking for test namespaces expect them to end with
-test$
by default, but the code we merged don't respect this convention.Notes
We should probably allow each integration test namespace to run in isolation, thus
status_im2/integration_test/core.cljs
should not require other integration test namespaces.The text was updated successfully, but these errors were encountered: