Hi guys, I have a javascript module with source an...
# javascript
g
Hi guys, I have a javascript module with source and tests directories. I use the AMD module kind. I just saw that both source and tests are exported using the same module name. That seems to be the cause of some problems (test functions are not defined when loading together source script and test script). Can that be possible?
b
@gaetan please file an issue to kotl.in/issue
as workaround you can split your module to two modules: production only and test only, but with this you can’t to access to internal members of production from test
g
I file an issue.