My project follows the following (simplified) directory structure:
\
|- app
|- script1.js
|- script2.js
|- test
|- intern.conf.js
|- test.spec.js
I'm using requirejs in my application and thus all scripts under app/
directory have their dependencies relative to that folder.
Because Intern baseUrl defaults to the root folder, the scripts under app/
fail to load.
However, setting the baseUrl under loader to 'app' or '/app' and so forth, results in failure to load the test suite..
Error: Failed to load module ../test/intern.conf from test/intern.conf.js (parent: *2)
I tried to set the test suite location to '../test/test.spec.js' and so forth, with no success.