I have a html file which has the list of scripts (modules,controllers,service)to be loaded in order.
When i run this html file through karma, am getting 404 error in all the script files.
Below is the Karma file
files: [
'src/webapp/project/webclnt/index.html',
'src/SampleService.js',
'tests/TestModule.js',
],
Below is the error
05 07 2016 14:07:41.746:WARN [web-server]: 404: /base/src/webapp/project/Family.js
05 07 2016 14:07:41.753:WARN [web-server]: 404: /base/src/webapp/project/Person.js
Can you help on this