Reputation: 1518
I am creating a demo for using the TheIntern test framework. When I try to load test module demo/intests/data I keep getting this error:
Defaulting to "console" reporter
Error: Failed to load module demo/intests/data from http://localhost:8081/dojo_playground/tutorials/demo/intests/data.js (parent: *12)
at /home/bogdanbiv/.nvm/v0.10.24/lib/node_modules/intern/node_modules/dojo/dojo.js:754:12
at fs.js:207:20
at Object.oncomplete (fs.js:107:15)
However, accessing this file from the browser is ok, here are the server logs:
~/Projects$ http-server -p 8081 ./
Starting up http-server, serving ./ on port: 8081
Hit CTRL-C to stop the server
[Sat, 22 Mar 2014 13:06:55 GMT] "GET /dojo_playground/tutorials/demo/intests/data.js" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/32.0.1700.107 Chrome/32.0.1700.107 Safari/537.36"
I tried creating a module as simple as possible in demo/intests/data:
define({
greeting: "Hello!",
howAreYou: "How are you?"
});
define([], function(){});
Data:
Upvotes: 0
Views: 245
Reputation: 18766
There are at least two issues here:
baseUrl
property.define
call per module.Upvotes: 1