Yes, that is what I meant - sorry for the confusion.

On 05/07/2017 17:23, Tony Atkins wrote:
> Hi, Antranig.
>
> I assume you meant that /fluid.require("%universal")/ would solve the
> problem?
>
> Cheers,
>
>
> Tony
>
> On Wed, Jul 5, 2017 at 6:03 PM, Antranig Basman
> <antranig.bas...@colorado.edu <mailto:antranig.bas...@colorado.edu>> wrote:
>
>     Cheers for the question, Gio.
>
>     As of the merge of https://github.com/GPII/universal/pull/487
>     <https://github.com/GPII/universal/pull/487> fixing GPII-2151, it
>     *should* have been the case that all test cases will run properly
>     regardless of the position of the checkout. They did at the time of
>     the merge - but with the universal truth that functionality which is
>     not tested is broken, this condition must have been broken by some
>     test cases which were committed since that time (February this year).
>
>     The issue is pretty simple to fix up. It is caused by an oddity with
>     node module resolution which generally prohibits resolving a module
>     name from within itself, unless its parent is named "node_modules".
>     There was a lot of code which was a bit slack about this in the old
>     days, for example, test code which would issue
>
>     require("universal");
>
>     from within universal. This is faulty, but still seemed preferable
>     to writing what it seems that node authors would have liked, which
>     is something uncivilized like
>
>     require("../../../../..");
>
>     which as well as being incomprehensible will break if the test is
>     moved to another directory.
>
>     For a while now this has been resolved by the Fluid module system
>     API with docs at
> http://docs.fluidproject.org/infusion/development/NodeAPI.html#fluid-require-modulename-foreignrequire-namespace- > <http://docs.fluidproject.org/infusion/development/NodeAPI.html#fluid-require-modulename-foreignrequire-namespace->
>
>     by replacing the call above with
>
>     require("%universal")
>
>     the problem is solved, but it is possible that not everyone got the
>     memo. If some tests fail, and we care, we should i) reopen the JIRA
>     GPII-2151 with a list of the failing ones and after it is fixed ii)
>     change our CI for universal so that it checks it out to an ordinary
>     directory.
>
>     CHeers,
>
>     Antranig


_______________________________________________
Architecture mailing list
Architecture@lists.gpii.net
http://lists.gpii.net/mailman/listinfo/architecture

Reply via email to